IServiceOperationsGetChildServices Method |
Gets the child services.
Namespace: Atomia.Provisioning.BasicOperationsAssembly: Atomia.Provisioning.BasicOperations (in Atomia.Provisioning.BasicOperations.dll) Version: 17.3.6337.16010
SyntaxList<Service> GetChildServices(
Service service,
string accountId,
bool sortAsc,
int pageNumber,
int pageSize,
out int totalItems
)
Function GetChildServices (
service As Service,
accountId As String,
sortAsc As Boolean,
pageNumber As Integer,
pageSize As Integer,
<OutAttribute> ByRef totalItems As Integer
) As List(Of Service)
List<Service^>^ GetChildServices(
Service^ service,
String^ accountId,
bool sortAsc,
int pageNumber,
int pageSize,
[OutAttribute] int% totalItems
)
abstract GetChildServices :
service : Service *
accountId : string *
sortAsc : bool *
pageNumber : int *
pageSize : int *
totalItems : int byref -> List<Service>
Parameters
- service
- Type: Service
The service. - accountId
- Type: SystemString
The account id. - sortAsc
- Type: SystemBoolean
If set to true sort results ascending. - pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
Size of the page. - totalItems
- Type: SystemInt32
The total items.
Return Value
Type:
ListServiceList of child services.
See Also