ActivityContext.GetValue 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
인수의 값을 가져옵니다.
오버로드
| Name | Description |
|---|---|
| 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>
검사할 인수입니다.
반품
인수의 값입니다.
적용 대상
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>
검사할 인수입니다.
반품
인수의 값입니다.
적용 대상
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
검사할 참조된 위치입니다.
반품
참조된 위치의 값입니다.
적용 대상
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>
검사할 인수입니다.
반품
인수의 값입니다.