HandleExternalEventActivity.ParameterBindings Propriedade
Definição
Obtém a coleção de associações de parâmetro.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
Valor da propriedade
A coleção de associações de parâmetro.The collection of parameter bindings.
- Atributos
Exemplos
O exemplo a seguir mostra como acessar a ParameterBindings propriedade.The following example shows how to access the ParameterBindings property. Este exemplo é da amostra do SDK de máquina de estado de classificação, do arquivo SampleWorkflow. designer. cs.This example is from the Ordering State Machine SDK sample, from the SampleWorkflow.designer.cs file. Para obter mais informações, consulte ordenando o estado da máquina.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