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
RuntimeArgument が値にバインドされる必要がある場合は true
、それ以外の場合は 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
RuntimeArgument が値にバインドされる必要がある場合は true
、それ以外の場合は false
。
この RuntimeArgument に適用されるオーバーロード グループの名前。
注釈
必須引数がバインドされていないと、検証エラーになり、デザイン時に表示されます。
RuntimeArgument.IsRequiredが引数にtrue
適用される場合System.Activities.RequiredArgumentAttribute、 は に設定されます。
OverloadGroupAttribute を通じて引数にオーバーロード グループを設定できます。
適用対象
.NET