HandleExternalEventActivity.ParameterBindings Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of parameter bindings.
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
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.
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
Applies to
See also
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.