ActivityContext.GetValue メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
引数の値を取得します。
オーバーロード
| 名前 | 説明 |
|---|---|
| GetValue(Argument) |
指定した Argumentの値を取得します。 |
| GetValue(RuntimeArgument) |
指定した RuntimeArgumentの値を取得します。 |
| GetValue<T>(InArgument<T>) |
指定した InArgument<T>の値を取得します。 |
| GetValue<T>(InOutArgument<T>) |
指定した InOutArgument<T>の値を取得します。 |
| GetValue<T>(LocationReference) |
指定した LocationReferenceの値を取得します。 |
| GetValue<T>(OutArgument<T>) |
指定した OutArgument<T>の値を取得します。 |
GetValue(Argument)
指定した Argumentの値を取得します。
public:
System::Object ^ GetValue(System::Activities::Argument ^ argument);
public object GetValue(System.Activities.Argument argument);
member this.GetValue : System.Activities.Argument -> obj
Public Function GetValue (argument As Argument) As Object
パラメーター
- argument
- Argument
検査する引数。
返品
引数の値。
適用対象
GetValue(RuntimeArgument)
指定した RuntimeArgumentの値を取得します。
public:
System::Object ^ GetValue(System::Activities::RuntimeArgument ^ runtimeArgument);
public object GetValue(System.Activities.RuntimeArgument runtimeArgument);
member this.GetValue : System.Activities.RuntimeArgument -> obj
Public Function GetValue (runtimeArgument As RuntimeArgument) As Object
パラメーター
- runtimeArgument
- RuntimeArgument
検査する引数。
返品
引数の値。
適用対象
GetValue<T>(InArgument<T>)
指定した InArgument<T>の値を取得します。
public:
generic <typename T>
T GetValue(System::Activities::InArgument<T> ^ argument);
public T GetValue<T>(System.Activities.InArgument<T> argument);
member this.GetValue : System.Activities.InArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As InArgument(Of T)) As T
型パラメーター
- T
引数の型。
パラメーター
- argument
- InArgument<T>
検査する引数。
返品
引数の値。
適用対象
GetValue<T>(InOutArgument<T>)
指定した InOutArgument<T>の値を取得します。
public:
generic <typename T>
T GetValue(System::Activities::InOutArgument<T> ^ argument);
public T GetValue<T>(System.Activities.InOutArgument<T> argument);
member this.GetValue : System.Activities.InOutArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As InOutArgument(Of T)) As T
型パラメーター
- T
引数の型。
パラメーター
- argument
- InOutArgument<T>
検査する引数。
返品
引数の値。
適用対象
GetValue<T>(LocationReference)
指定した LocationReferenceの値を取得します。
public:
generic <typename T>
T GetValue(System::Activities::LocationReference ^ locationReference);
public T GetValue<T>(System.Activities.LocationReference locationReference);
member this.GetValue : System.Activities.LocationReference -> 'T
Public Function GetValue(Of T) (locationReference As LocationReference) As T
型パラメーター
- T
値の型。
パラメーター
- locationReference
- LocationReference
検査する参照先の場所。
返品
参照先の場所の値。
適用対象
GetValue<T>(OutArgument<T>)
指定した OutArgument<T>の値を取得します。
public:
generic <typename T>
T GetValue(System::Activities::OutArgument<T> ^ argument);
public T GetValue<T>(System.Activities.OutArgument<T> argument);
member this.GetValue : System.Activities.OutArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As OutArgument(Of T)) As T
型パラメーター
- T
引数の型。
パラメーター
- argument
- OutArgument<T>
検査する引数。
返品
引数の値。