Share via


HandleExternalEventActivity.ParameterBindings Proprietà

Definizione

Ottiene la raccolta di associazioni dei parametri.

public:
 property System::Workflow::ComponentModel::WorkflowParameterBindingCollection ^ ParameterBindings { System::Workflow::ComponentModel::WorkflowParameterBindingCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Workflow.ComponentModel.WorkflowParameterBindingCollection ParameterBindings { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ParameterBindings : System.Workflow.ComponentModel.WorkflowParameterBindingCollection
Public ReadOnly Property ParameterBindings As WorkflowParameterBindingCollection

Valore della proprietà

Raccolta di associazioni dei parametri.

Attributi

Esempio

Nell'esempio seguente viene illustrato come accedere alla proprietà ParameterBindings. Questo esempio di codice fa parte dell'esempio SDK Ordering State Machine nel file SampleWorkflow.designer.cs. Per altre informazioni, vedere Ordering State Machine Sample.For more information, see Ordering State Machine Sample.

public WorkflowDesignerControl()
{
    InitializeComponent();

    WorkflowTheme.CurrentTheme.ReadOnly = false;
    WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = false;
    WorkflowTheme.CurrentTheme.ReadOnly = true;
}
Public Sub New()
    InitializeComponent()

    WorkflowTheme.CurrentTheme.ReadOnly = False
    WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = False
    WorkflowTheme.CurrentTheme.ReadOnly = True
End Sub

Si applica a

Vedi anche