InvokeWorkflowActivity.ParameterBindings 属性

定义

获取要绑定到的参数的集合。Gets the collection of parameters to bind to.

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

属性值

WorkflowParameterBindingCollection

包含正在调用的工作流的参数绑定的 WorkflowParameterBindingCollectionA WorkflowParameterBindingCollection that contains the parameter bindings for the workflow being called. 默认值为空 WorkflowParameterBindingCollectionThe default is an empty WorkflowParameterBindingCollection.

属性

注解

此集合中的参数是调用子工作流所必需的参数。The parameters in this collection are the parameters required to invoke the child workflow.

此集合只能指定入站参数。This collection can only specify inbound parameters. 不能指定出站参数和引用参数,因为工作流调用是异步的。Outbound and reference parameters cannot be specified, because the workflow invocation is asynchronous.

适用于