| AuditResourceHandlerQuery Method (NameValueCollection, Int32, Int32, Int32) |
Perform the query for audits
Namespace:
SanteDB.Rest.AMI.Resources
Assembly:
SanteDB.Rest.AMI (in SanteDB.Rest.AMI.dll) Version: 2.2.1
Syntax public IEnumerable<Object> Query(
NameValueCollection queryParameters,
int offset,
int count,
out int totalCount
)
Public Function Query (
queryParameters As NameValueCollection,
offset As Integer,
count As Integer,
<OutAttribute> ByRef totalCount As Integer
) As IEnumerable(Of Object)
public:
virtual IEnumerable<Object^>^ Query(
NameValueCollection^ queryParameters,
int offset,
int count,
[OutAttribute] int% totalCount
) sealed
abstract Query :
queryParameters : NameValueCollection *
offset : int *
count : int *
totalCount : int byref -> IEnumerable<Object>
override Query :
queryParameters : NameValueCollection *
offset : int *
count : int *
totalCount : int byref -> IEnumerable<Object>
Parameters
- queryParameters
- Type: SanteDB.Core.Model.QueryNameValueCollection
The filter parameters for the audit - offset
- Type: SystemInt32
The first result to retrieve - count
- Type: SystemInt32
The count of objects to retrieve - totalCount
- Type: SystemInt32
The total counts of objects
Return Value
Type:
IEnumerableObjectAn array of objects matching the query
Implements
IApiResourceHandlerQuery(NameValueCollection, Int32, Int32, Int32)See Also