System.Object
MoveContentAction
Client Declaration
public class MoveContentAction
Represents a pending action for moving the content data of a Document
or Annotation
object to a new storage location.
For more information, see the Java™ API MoveContent
class and moveContent
method topics.
Attributes
Boolean
moveAllVersions
: [request] Optional expression specifying
whether all versions of the object will be moved (true
) or not (false
).GuidType
targetPolicyId
: [request] Required expression specifying the
GUID of a storage policy object that identifies the target storage location.Attributes Specific to .NET Clients
Boolean
moveAllVersionsSpecified
: Optional expression specifying whether moveAllVersions
has a value (true
) or not (false
).
MoveContentAction objMoveContent = new MoveContentAction(); objMoveContent.moveAllVersions = true; objMoveContent.moveAllVersionsSpecified = true; objMoveContent.targetPolicyId = "{ACC4CA8D-F36C-47AC-BA6B-7631C9D629F6}";
<xsd:complexType name="MoveContentAction"> <xsd:complexContent> <xsd:extension base="ActionType"> <xsd:attribute name="targetPolicyId" type="GuidType" use="required"/> <xsd:attribute name="moveAllVersions" type="xsd:boolean"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>