IPackageOperationsIsPossibleToChangePackage Method |
Checks whether a package change is possible.
Namespace: Atomia.Provisioning.BasicOperationsAssembly: Atomia.Provisioning.BasicOperations (in Atomia.Provisioning.BasicOperations.dll) Version: 17.3.6337.16010
Syntaxbool IsPossibleToChangePackage(
string packageId,
string newPackageName,
string accountId,
int pageNumber,
int pageSize,
out GroupOfServiceToDelete2[] serviceToDelete,
out ProvisioningPackageExtension[] packageExtensionsToDelete
)
Function IsPossibleToChangePackage (
packageId As String,
newPackageName As String,
accountId As String,
pageNumber As Integer,
pageSize As Integer,
<OutAttribute> ByRef serviceToDelete As GroupOfServiceToDelete2(),
<OutAttribute> ByRef packageExtensionsToDelete As ProvisioningPackageExtension()
) As Boolean
bool IsPossibleToChangePackage(
String^ packageId,
String^ newPackageName,
String^ accountId,
int pageNumber,
int pageSize,
[OutAttribute] array<GroupOfServiceToDelete2^>^% serviceToDelete,
[OutAttribute] array<ProvisioningPackageExtension^>^% packageExtensionsToDelete
)
abstract IsPossibleToChangePackage :
packageId : string *
newPackageName : string *
accountId : string *
pageNumber : int *
pageSize : int *
serviceToDelete : GroupOfServiceToDelete2[] byref *
packageExtensionsToDelete : ProvisioningPackageExtension[] byref -> bool
Parameters
- packageId
- Type: SystemString
The package id. - newPackageName
- Type: SystemString
Name of the target package. - accountId
- Type: SystemString
The account id. - pageNumber
- Type: SystemInt32
The page number. - pageSize
- Type: SystemInt32
The page size. - serviceToDelete
- Type: Atomia.Provisioning.BaseGroupOfServiceToDelete2
Services to delete to make the change possible. - packageExtensionsToDelete
- Type: Atomia.Provisioning.BaseProvisioningPackageExtension
Package extensions to delete to make the change possible.
Return Value
Type:
BooleanTrue if change is possible, otherwise false.
See Also