SiteTreeServicesCanMovePage Method
|
Determines if a collection of Pages can be moved to another location by current User.
Namespace: IngeniuxCMServiceAssembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntaxpublic XHRServiceResponseGeneric<CanMoveContentItemConfirmation> CanMovePage(
string[] pageIds
)
Public Function CanMovePage (
pageIds As String()
) As XHRServiceResponseGeneric(Of CanMoveContentItemConfirmation)
public:
virtual XHRServiceResponseGeneric<CanMoveContentItemConfirmation^>^ CanMovePage(
array<String^>^ pageIds
) sealed
abstract CanMovePage :
pageIds : string[] -> XHRServiceResponseGeneric<CanMoveContentItemConfirmation>
override CanMovePage :
pageIds : string[] -> XHRServiceResponseGeneric<CanMoveContentItemConfirmation> Parameters
- pageIds String
- Ids of Pages to be determined
Return Value
XHRServiceResponseGenericCanMoveContentItemConfirmationConfirmation of whether the given Pages and their descendants can be moved. Returns warning if current User cannot reorder Page assigned to another User, and any of the Pages or descendants are assigned to another User
Example
Sample JSON return
{
canMove: false,
prompt: "page"
}
See Also