RuntimeDelegateArgument 构造函数

定义

使用指定的名称、数据类型、自变量方向和 RuntimeDelegateArgument 初始化 DelegateArgument 类的新实例。

public:
 RuntimeDelegateArgument(System::String ^ name, Type ^ type, System::Activities::ArgumentDirection direction, System::Activities::DelegateArgument ^ boundArgument);
public RuntimeDelegateArgument (string name, Type type, System.Activities.ArgumentDirection direction, System.Activities.DelegateArgument boundArgument);
new System.Activities.RuntimeDelegateArgument : string * Type * System.Activities.ArgumentDirection * System.Activities.DelegateArgument -> System.Activities.RuntimeDelegateArgument
Public Sub New (name As String, type As Type, direction As ArgumentDirection, boundArgument As DelegateArgument)

参数

name
String

RuntimeDelegateArgument 的名称。

type
Type

RuntimeDelegateArgument 的数据类型。

direction
ArgumentDirection

指定某个自变量的数据流方向的枚举值之一。

boundArgument
DelegateArgument

由此 RuntimeDelegateArgument 表示的委托自变量。

适用于