Represents information stored by the workflow.
Namespace:
Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in
microsoft.resourcemanagement.dll)
Usage
Visual Basic |
Dim instance As SequentialWorkflow
Dim value As Dictionary(Of String, Object)
value = instance.WorkflowDictionary
instance.WorkflowDictionary = value
|
Syntax
Visual Basic |
Public Property WorkflowDictionary As Dictionary(Of String, Object)
|
C# |
public Dictionary<string,Object> WorkflowDictionary { get; set; }
|
C++ |
public:
property Dictionary<String^, Object^>^ WorkflowDictionary {
Dictionary<String^, Object^>^ get ();
void set (Dictionary<String^, Object^>^ value);
}
|
J# |
/** @property */
public Dictionary<String,Object> get_WorkflowDictionary ()
/** @property */
public void set_WorkflowDictionary (Dictionary<String,Object> value)
|
JScript |
public function get WorkflowDictionary () : Dictionary<String,Object>
public function set WorkflowDictionary (value : Dictionary<String,Object>)
|
Property Value
A
Dictionary that is used by the workflow.
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