sharedlibrarycorehelpers ResourceQueryHelperResultT - RaidMax/IW4M-Admin GitHub Wiki

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 >](/RaidMax/IW4M-Admin/wiki/ResourceQueryHelperResult<-QueryResultType->)

  end

Members

Properties

Public properties

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

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