SiteTreeServicesCanMovePage Method
|
Determines if a collection of Pages can be moved to another location by current User.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public 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
- Type: SystemString
Ids of Pages to be determined
Return Value
Type:
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
Examples
Sample JSON return
{
canMove: false,
prompt: "page"
}
See Also