다음을 통해 공유


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

지정한 변수의 값입니다.

적용 대상