HandleExternalEventActivity.ParameterBindings Property

Definition

Gets the collection of parameter bindings.

C#
[System.ComponentModel.Browsable(false)]
public System.Workflow.ComponentModel.WorkflowParameterBindingCollection ParameterBindings { get; }

Property Value

The collection of parameter bindings.

Attributes

Examples

The following example shows how to access the ParameterBindings property. This example is from the Ordering State Machine SDK sample, from the SampleWorkflow.designer.cs file. For more information, see Ordering State Machine Sample.

C#
public WorkflowDesignerControl()
{
    InitializeComponent();

    WorkflowTheme.CurrentTheme.ReadOnly = false;
    WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = false;
    WorkflowTheme.CurrentTheme.ReadOnly = true;
}

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also