Click or drag to resize
ICoreApiFindServicesByPathWithPaging Method
Finds the services by given paths with paging support.

Namespace: Atomia.Provisioning.Service
Assembly: Atomia.Provisioning.Service (in Atomia.Provisioning.Service.dll) Version: 17.3.6337.16014
Syntax
ProvisioningService[] FindServicesByPathWithPaging(
	IList<ServiceSearchCriteria> searchCriteriaList,
	Dictionary<string, string> properties,
	string account,
	string sortByPropName,
	bool sortAsc,
	int pageNumber,
	int pageSize,
	out long itemCount
)

Parameters

searchCriteriaList
Type: System.Collections.GenericIListServiceSearchCriteria
List of ServiceSearchCriteria.
properties
Type: System.Collections.GenericDictionaryString, String
Service property name-value pairs which are used to filter searched services.
account
Type: SystemString
Account owner.
sortByPropName
Type: SystemString
Name of the service property to sort by.
sortAsc
Type: SystemBoolean
If set to true sort resulting list ascending.
pageNumber
Type: SystemInt32
Page number which to return.
pageSize
Type: SystemInt32
Number of services returned within each page.
itemCount
Type: SystemInt64
Total number of found services.

Return Value

Type: ProvisioningService
Paginated list of provisioning services, which match any of the given paths and match given service property criteria.
See Also