RuntimeArgument 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RuntimeArgument 類別的新執行個體。
多載
RuntimeArgument(String, Type, ArgumentDirection) |
使用名稱、資料型別和引數方向,初始化 RuntimeArgument 類別的新執行個體。 |
RuntimeArgument(String, Type, ArgumentDirection, Boolean) |
使用名稱、資料型別、引數方向和表示 RuntimeArgument 是否需要與值繫結的值,初始化 RuntimeArgument 類別的新執行個體。 |
RuntimeArgument(String, Type, ArgumentDirection, List<String>) |
使用名稱、資料型別、引數方向和多載群組名稱的清單,初始化 RuntimeArgument 類別的新執行個體。 |
RuntimeArgument(String, Type, ArgumentDirection, Boolean, List<String>) |
使用名稱、資料型別、引數方向、RuntimeArgument 是否需要與值繫結以及多載群組名稱清單,初始化 RuntimeArgument 類別的新執行個體。 |
RuntimeArgument(String, Type, ArgumentDirection)
使用名稱、資料型別和引數方向,初始化 RuntimeArgument 類別的新執行個體。
public:
RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction);
public RuntimeArgument (string name, Type argumentType, System.Activities.ArgumentDirection direction);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection)
參數
- name
- String
RuntimeArgument 的名稱。
- argumentType
- Type
RuntimeArgument 的類型。
- direction
- ArgumentDirection
流經引數的資料流程方向。
適用於
RuntimeArgument(String, Type, ArgumentDirection, Boolean)
使用名稱、資料型別、引數方向和表示 RuntimeArgument 是否需要與值繫結的值,初始化 RuntimeArgument 類別的新執行個體。
public:
RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, bool isRequired);
public RuntimeArgument (string name, Type argumentType, System.Activities.ArgumentDirection direction, bool isRequired);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * bool -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, isRequired As Boolean)
參數
- name
- String
RuntimeArgument 的名稱。
- argumentType
- Type
RuntimeArgument 的資料型別。
- direction
- ArgumentDirection
流經引數的資料流程方向。
- isRequired
- Boolean
true
表示 RuntimeArgument 需要與值繫結,否則為 false
。
適用於
RuntimeArgument(String, Type, ArgumentDirection, List<String>)
使用名稱、資料型別、引數方向和多載群組名稱的清單,初始化 RuntimeArgument 類別的新執行個體。
public:
RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, System::Collections::Generic::List<System::String ^> ^ overloadGroupNames);
public RuntimeArgument (string name, Type argumentType, System.Activities.ArgumentDirection direction, System.Collections.Generic.List<string> overloadGroupNames);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * System.Collections.Generic.List<string> -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, overloadGroupNames As List(Of String))
參數
- name
- String
RuntimeArgument 的名稱。
- argumentType
- Type
RuntimeArgument 的資料型別。
- direction
- ArgumentDirection
流經引數的資料流程方向。
套用至這個 RuntimeArgument 的多載群組。
適用於
RuntimeArgument(String, Type, ArgumentDirection, Boolean, List<String>)
使用名稱、資料型別、引數方向、RuntimeArgument 是否需要與值繫結以及多載群組名稱清單,初始化 RuntimeArgument 類別的新執行個體。
public:
RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, bool isRequired, System::Collections::Generic::List<System::String ^> ^ overloadGroupNames);
public RuntimeArgument (string name, Type argumentType, System.Activities.ArgumentDirection direction, bool isRequired, System.Collections.Generic.List<string> overloadGroupNames);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * bool * System.Collections.Generic.List<string> -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, isRequired As Boolean, overloadGroupNames As List(Of String))
參數
- name
- String
RuntimeArgument 的名稱。
- argumentType
- Type
RuntimeArgument 的資料型別。
- direction
- ArgumentDirection
流經引數的資料流程方向。
- isRequired
- Boolean
true
表示 RuntimeArgument 需要與值繫結,否則為 false
。
套用至這個 RuntimeArgument 的多載群組名稱。
備註
必要引數,這些引數是設計階段顯示之驗證錯誤中的未繫結程序結果。
如果套用至自變數,System.Activities.RequiredArgumentAttribute則會RuntimeArgument.IsRequired將 設定true
為 。
多載群組可以在通過 OverloadGroupAttribute 的引數上設定。