IServiceOperationsFindServicesByPath Method |
Finds the services by path.
Namespace: Atomia.Provisioning.BasicOperationsAssembly: Atomia.Provisioning.BasicOperations (in Atomia.Provisioning.BasicOperations.dll) Version: 17.3.6337.16010
SyntaxList<Service> FindServicesByPath(
IList<BasicOperationServiceSearchCriteria> searchCriteriaList,
Dictionary<string, string> properties,
string account,
string sortByPropName,
bool sortAsc,
int pageNumber,
int pageSize,
out long itemCount
)
Function FindServicesByPath (
searchCriteriaList As IList(Of BasicOperationServiceSearchCriteria),
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 List(Of Service)
List<Service^>^ FindServicesByPath(
IList<BasicOperationServiceSearchCriteria^>^ searchCriteriaList,
Dictionary<String^, String^>^ properties,
String^ account,
String^ sortByPropName,
bool sortAsc,
int pageNumber,
int pageSize,
[OutAttribute] long long% itemCount
)
abstract FindServicesByPath :
searchCriteriaList : IList<BasicOperationServiceSearchCriteria> *
properties : Dictionary<string, string> *
account : string *
sortByPropName : string *
sortAsc : bool *
pageNumber : int *
pageSize : int *
itemCount : int64 byref -> List<Service>
Parameters
- searchCriteriaList
- Type: System.Collections.GenericIListBasicOperationServiceSearchCriteria
The search criteria list. - properties
- Type: System.Collections.GenericDictionaryString, String
The properties. - account
- Type: SystemString
The account. - sortByPropName
- Type: SystemString
Name of the sort by prop. - sortAsc
- Type: SystemBoolean
if set to true sort results ascending. - pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
Size of the page. - itemCount
- Type: SystemInt64
The item count.
Return Value
Type:
ListServiceList of found services.
See Also