ICoreApiFindServicesByPathWithPaging Method |
Finds the services by given paths with paging support.
Namespace: Atomia.Provisioning.ServiceAssembly: 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
)
Function FindServicesByPathWithPaging (
searchCriteriaList As IList(Of ServiceSearchCriteria),
properties As Dictionary(Of String, String),
account As String,
sortByPropName As String,
sortAsc As Boolean,
pageNumber As Integer,
pageSize As Integer,
<OutAttribute> ByRef itemCount As Long
) As ProvisioningService()
array<ProvisioningService^>^ FindServicesByPathWithPaging(
IList<ServiceSearchCriteria^>^ searchCriteriaList,
Dictionary<String^, String^>^ properties,
String^ account,
String^ sortByPropName,
bool sortAsc,
int pageNumber,
int pageSize,
[OutAttribute] long long% itemCount
)
abstract FindServicesByPathWithPaging :
searchCriteriaList : IList<ServiceSearchCriteria> *
properties : Dictionary<string, string> *
account : string *
sortByPropName : string *
sortAsc : bool *
pageNumber : int *
pageSize : int *
itemCount : int64 byref -> ProvisioningService[]
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:
ProvisioningServicePaginated list of provisioning services, which match any of the given paths and match given service property criteria.
See Also