-
-
Notifications
You must be signed in to change notification settings - Fork 44
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 > |
Results collection of results |
get, set |
int |
RetrievedResultCount indicates the total number of results retrieved |
get, set |
long |
TotalResultCount indicates 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