Click or drag to resize

PerformanceLogHelperSearch Method

Searches the performance log.

Namespace:  Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:  Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax
public static SearchResult<PerformanceLog> Search(
	int firstRow,
	int pageSize,
	string order,
	string propertyNameToOrder,
	string[] categoryNames = null,
	string[] counterNames = null,
	Nullable<DateTime> from = null,
	Nullable<DateTime> to = null
)

Parameters

firstRow
Type: SystemInt32
The first row.
pageSize
Type: SystemInt32
The page size.
order
Type: SystemString
The order (asc or desc).
propertyNameToOrder
Type: SystemString
The property name to order by.
categoryNames (Optional)
Type: SystemString
Array of category names to search in or null for all.
counterNames (Optional)
Type: SystemString
Array of counter names to search in or null for all.
from (Optional)
Type: SystemNullableDateTime
From date to filter by.
to (Optional)
Type: SystemNullableDateTime
To date to filter by.

Return Value

Type: SearchResultPerformanceLog
Performance log data.
See Also