WorkflowInstanceInfo.MappedVariables Property

 

Collection of mapped variables for in-progress workflow instance

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Syntax

public IDictionary<XName, string> MappedVariables {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property IDictionary<XName^, String^>^ MappedVariables {
    [CompilerGeneratedAttribute]
    IDictionary<XName^, String^>^ get();
    [CompilerGeneratedAttribute]
    private: void set(IDictionary<XName^, String^>^ value);
}
member MappedVariables : IDictionary<XName, string> with get, private set
Public Property MappedVariables As IDictionary(Of XName, String)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IDictionary<XName, String>

IDictionary based collection

See Also

WorkflowInstanceInfo Class
Microsoft.Workflow.Client Namespace

Return to top