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

参数的值。

适用于