This API supports the FIM 2010 infrastructure. Using this API directly from your code is not supported.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As XmlInteractiveActivity
Dim value As Object

value = instance.Document

instance.Document = value

Syntax

Visual Basic
<DescriptionAttribute("The deserialized version of the document. This will be consumed by the parent activity, and will remain equal to null if deserialization of the document sent by the client fails.")> _
<CategoryAttribute("Activity Data")> _
<BrowsableAttribute(True)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> _
Public Property Document As Object
C#
[DescriptionAttribute("The deserialized version of the document. This will be consumed by the parent activity, and will remain equal to null if deserialization of the document sent by the client fails.")] 
[CategoryAttribute("Activity Data")] 
[BrowsableAttribute(true)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] 
public Object Document { get; set; }
C++
[DescriptionAttribute(L"The deserialized version of the document. This will be consumed by the parent activity, and will remain equal to null if deserialization of the document sent by the client fails.")] 
[CategoryAttribute(L"Activity Data")] 
[BrowsableAttribute(true)] 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)] 
public:
property Object^ Document {
		Object^ get ();
		void set (Object^ value);
}
J#
/** @property */
public Object get_Document ()

/** @property */
public void set_Document (Object value)
JScript
public function get Document () : Object

public function set Document (value : Object)

Property Value

Returns Object.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

Windows 2008 x64 Edition

See Also