Creates a new instance of a MoveContent pending action object.

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

ToggleSyntax

Visual Basic (Declaration)
Public Sub New ( _
	targetPolicyId As String, _
	moveAllVersions As Nullable(Of Boolean) _
)
C#
public MoveContent(
	string targetPolicyId,
	Nullable<bool> moveAllVersions
)
Visual C++
public:
MoveContent(
	String^ targetPolicyId, 
	Nullable<bool> moveAllVersions
)
JavaScript
FileNet.Api.Action.MoveContent = function(targetPolicyId, moveAllVersions);

Parameters

targetPolicyId
Type: System..::.String
A String specifying the ID of the target storage area for the object's content data.
moveAllVersions
Type: System..::.Nullable<(Of <(Boolean>)>)
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).

ToggleSee Also