NativeActivityUpdateContext.GetValue 方法

定义

获取指定对象的值。

重载

GetValue(RuntimeArgument)

获取指定 RuntimeArgument 的值。

GetValue(Variable)

获取当前 NativeActivity 实例中指定变量的值。

GetValue(Argument)

获取指定“参数”的值。

GetValue<T>(Variable<T>)

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

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

要检查的参数。

返回

指定的 RuntimeArgument 的值。

适用于

GetValue(Variable)

获取当前 NativeActivity 实例中指定变量的值。

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

参数

variable
Variable

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

返回

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

适用于

GetValue(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<T>(Variable<T>)

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

public:
generic <typename T>
 T GetValue(System::Activities::Variable<T> ^ variable);
public T GetValue<T> (System.Activities.Variable<T> variable);
member 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

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

适用于