Skip to content

Commit

Permalink
close(#142): update minver, and include more xml docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzzerd committed Feb 16, 2021
1 parent 01b740b commit b1e4a56
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/FMData.Rest/FMData.Rest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<PropertyGroup>
<MinVerMinimumMajorMinor>4.1</MinVerMinimumMajorMinor>
<MinVerMinimumMajorMinor>4.3</MinVerMinimumMajorMinor>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleasePhase>beta</MinVerDefaultPreReleasePhase>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/FMData.Xml/FMData.Xml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<PropertyGroup>
<MinVerMinimumMajorMinor>4.1</MinVerMinimumMajorMinor>
<MinVerMinimumMajorMinor>4.3</MinVerMinimumMajorMinor>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleasePhase>beta</MinVerDefaultPreReleasePhase>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/FMData/FMData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<PropertyGroup>
<MinVerMinimumMajorMinor>4.1</MinVerMinimumMajorMinor>
<MinVerMinimumMajorMinor>4.3</MinVerMinimumMajorMinor>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleasePhase>beta</MinVerDefaultPreReleasePhase>
</PropertyGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/FMData/IFileMakerApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -473,14 +473,15 @@ Task<IEnumerable<T>> SendAsync<T>(
Func<T, int, object> modId) where T : class, new();

/// <summary>
/// Find a record or records matching the request.
/// Find a record or records matching the request and include a data info model as well as the response.
/// </summary>
/// <typeparam name="T">The type of response objects to return.</typeparam>
/// <param name="req">The find request parameters.</param>
/// <param name="fmId">Function to assign the FileMaker RecordId to each instance of {T}.</param>
/// <param name="modId">Function to assign the FileMaker ModId to each instance of {T}.</param>
/// <param name="includeDataInfo">Indicates whether the data information portion should be parsed.</param>
/// <returns>An <see cref="IEnumerable{T}"/> matching the request parameters.</returns>
/// <remarks>The data info portion of the response is always returned when correctly parsed.</remarks>
Task<(IEnumerable<T>, DataInfoModel)> SendAsync<T>(
IFindRequest<T> req,
bool includeDataInfo,
Expand Down
6 changes: 3 additions & 3 deletions src/FMData/Responses/DataInfoModel.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
namespace FMData
{
/// <summary>
/// Contains information about the response.
/// Contains information about the response. Source Table, Layout, and Found Count information.
/// </summary>
public class DataInfoModel
{
/// <summary>
/// Database the data came from
/// Database the data came from.
/// </summary>
public string Database { get; set; }

Expand All @@ -16,7 +16,7 @@ public class DataInfoModel
public string Layout { get; set; }

/// <summary>
/// Table the data came from
/// Table the data came from.
/// </summary>
public string Table { get; set; }

Expand Down

0 comments on commit b1e4a56

Please sign in to comment.