-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycorehelpers ResourceQueryHelperResultT
RaidMax edited this page May 21, 2023
·
1 revision
generic class for passing information about a resource query
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Helpers
SharedLibraryCore.Helpers.ResourceQueryHelperResult_1[[ResourceQueryHelperResult< QueryResultType >]]
end
| Type | Name | Methods |
|---|---|---|
IEnumerable<QueryResultType> |
Resultscollection of results |
get, set |
int |
RetrievedResultCountindicates the total number of results retrieved |
get, set |
long |
TotalResultCountindicates the total number of results found |
get, set |
generic class for passing information about a resource query
| Type | Description | Constraints |
|---|---|---|
QueryResultType |
Type of query result |
public ResourceQueryHelperResult()public long TotalResultCount { get; set; }indicates the total number of results found
public int RetrievedResultCount { get; set; }indicates the total number of results retrieved
public IEnumerable<QueryResultType> Results { get; set; }collection of results
Generated with ModularDoc