다음을 통해 공유


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

인수 값입니다.

적용 대상