Creates a new instance of a MoveContent pending action object.


Namespace: FileNet.Api.Action
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal targetPolicyId As String,  _ 
   ByVal moveAllVersions As Nullable(Of Boolean) _ 
)
C#
public MoveContent(
   string targetPolicyId,
   Nullable<bool> moveAllVersions
)
C++
public:
 MoveContent(
   String targetPolicyId,
   Nullable<bool> moveAllVersions
) sealed 
J#
public MoveContent(
   string targetPolicyId,
   Nullable<bool> moveAllVersions
)
JScript
public function MoveContent(
   targetPolicyId : String,
   moveAllVersions : Nullable<bool>
)

Parameters

targetPolicyId
A String specifying the ID of the target storage policy for the object's content data.
moveAllVersions
A Boolean specifying whether to move the content data of every version of a document (true) or the content data of the current document version only (false).

See Also