Share via


ActivityContext.GetValue メソッド

定義

引数の値を取得します。

オーバーロード

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>

検査対象の引数。

戻り値

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>

検査対象の引数。

戻り値

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

調査する参照対象の場所。

戻り値

T

参照対象の場所の値。

適用対象

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>

検査対象の引数。

戻り値

T

引数の値です。

適用対象