1 sharedlibrarycorehelpers ResourceQueryHelperResultT
RaidMax edited this page 2023-05-20 22:09:21 -05:00

ResourceQueryHelperResult<QueryResultType> Public class

Description

generic class for passing information about a resource query

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Helpers
  SharedLibraryCore.Helpers.ResourceQueryHelperResult_1[[ResourceQueryHelperResult< QueryResultType >]]

  end

Members

Properties

Public properties

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

Details

Summary

generic class for passing information about a resource query

Generic types

Type Description Constraints
QueryResultType Type of query result

Constructors

ResourceQueryHelperResult

Source code

public ResourceQueryHelperResult()

Properties

TotalResultCount

public long TotalResultCount { get; set; }
Summary

indicates the total number of results found

RetrievedResultCount

public int RetrievedResultCount { get; set; }
Summary

indicates the total number of results retrieved

Results

public IEnumerable<QueryResultType> Results { get; set; }
Summary

collection of results

Generated with ModularDoc