CoreApiProxyFindServicesByPathWithDepth Method |
Finds the services using given paths.
Namespace:
Atomia.Billing.Core.Sdk.ServiceProxies
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public ProvisioningService[] FindServicesByPathWithDepth(
ServiceSearchCriteria[] searchCriteriaList,
Dictionary<string, string> properties,
string account,
string sortByPropName,
bool sortAsc,
int numberOfParents
)
Public Function FindServicesByPathWithDepth (
searchCriteriaList As ServiceSearchCriteria(),
properties As Dictionary(Of String, String),
account As String,
sortByPropName As String,
sortAsc As Boolean,
numberOfParents As Integer
) As ProvisioningService()
public:
virtual array<ProvisioningService^>^ FindServicesByPathWithDepth(
array<ServiceSearchCriteria^>^ searchCriteriaList,
Dictionary<String^, String^>^ properties,
String^ account,
String^ sortByPropName,
bool sortAsc,
int numberOfParents
) sealed
abstract FindServicesByPathWithDepth :
searchCriteriaList : ServiceSearchCriteria[] *
properties : Dictionary<string, string> *
account : string *
sortByPropName : string *
sortAsc : bool *
numberOfParents : int -> ProvisioningService[]
override FindServicesByPathWithDepth :
searchCriteriaList : ServiceSearchCriteria[] *
properties : Dictionary<string, string> *
account : string *
sortByPropName : string *
sortAsc : bool *
numberOfParents : int -> ProvisioningService[]
Parameters
- searchCriteriaList
- Type: Atomia.Billing.Core.Sdk.AtomiaProvisioningApiServiceSearchCriteria
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. - numberOfParents
- Type: SystemInt32
Number of parents to fetch
Return Value
Type:
ProvisioningServiceList of found services which match given service path criteria.
Implements
ICoreApiFindServicesByPathWithDepth(ServiceSearchCriteria, DictionaryString, String, String, String, Boolean, Int32)See Also