NativeActivityContext.GetValue 方法

定义

重载

GetValue(Variable)

返回当前 NativeActivity 实例中的指定变量的值。

GetValue<T>(Variable<T>)

返回当前 NativeActivity 实例中指定泛型变量的值。

GetValue(Variable)

返回当前 NativeActivity 实例中的指定变量的值。

public:
 System::Object ^ GetValue(System::Activities::Variable ^ variable);
public object GetValue (System.Activities.Variable variable);
override this.GetValue : System.Activities.Variable -> obj
Public Function GetValue (variable As Variable) As Object

参数

variable
Variable

在当前 NativeActivity 实例的执行过程中要检索其值的变量。

返回

指定的变量的值。

适用于

GetValue<T>(Variable<T>)

返回当前 NativeActivity 实例中指定泛型变量的值。

public:
generic <typename T>
 T GetValue(System::Activities::Variable<T> ^ variable);
public T GetValue<T> (System.Activities.Variable<T> variable);
override this.GetValue : System.Activities.Variable<'T> -> 'T
Public Function GetValue(Of T) (variable As Variable(Of T)) As T

类型参数

T

要检索其值的变量的类型。

参数

variable
Variable<T>

在当前 NativeActivity 实例的执行过程中要检索其值的泛型变量。

返回

T

指定的变量的值。

适用于