IServiceOperationsFindServiceByNameAndPropertiesInAccount Method |
Finds the service by name and properties in account.
Namespace: Atomia.Provisioning.BasicOperationsAssembly: Atomia.Provisioning.BasicOperations (in Atomia.Provisioning.BasicOperations.dll) Version: 17.3.6337.16010
SyntaxList<Service> FindServiceByNameAndPropertiesInAccount(
string accountId,
string serviceName,
List<KeyValuePair<string, string>> properties,
int pageNumber,
int pageSize,
out int totalItems
)
Function FindServiceByNameAndPropertiesInAccount (
accountId As String,
serviceName As String,
properties As List(Of KeyValuePair(Of String, String)),
pageNumber As Integer,
pageSize As Integer,
<OutAttribute> ByRef totalItems As Integer
) As List(Of Service)
List<Service^>^ FindServiceByNameAndPropertiesInAccount(
String^ accountId,
String^ serviceName,
List<KeyValuePair<String^, String^>>^ properties,
int pageNumber,
int pageSize,
[OutAttribute] int% totalItems
)
abstract FindServiceByNameAndPropertiesInAccount :
accountId : string *
serviceName : string *
properties : List<KeyValuePair<string, string>> *
pageNumber : int *
pageSize : int *
totalItems : int byref -> List<Service>
Parameters
- accountId
- Type: SystemString
The account id. - serviceName
- Type: SystemString
Name of the service. - properties
- Type: System.Collections.GenericListKeyValuePairString, String
The properties. - pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
Size of the page. - totalItems
- Type: SystemInt32
The total items.
Return Value
Type:
ListServiceList of found services.
See Also