共用方式為


NativeActivityUpdateContext.GetValue 方法

定義

取得指定之物件的值。

多載

GetValue(RuntimeArgument)

取得指定之 RuntimeArgument 的值。

GetValue(Variable)

取得目前 NativeActivity 執行個體中指定之變數的值。

GetValue(Argument)

取得指定之 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)

取得指定之 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

要檢查的引數。

傳回

指定的 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 執行個體中指定之泛型變數的值。

適用於