InArgument<T>.Implicit 연산자

정의

오버로드

Implicit(Activity<T> to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 Activity<TResult>를 초기화하고 반환합니다.

Implicit(DelegateArgument to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 DelegateArgument를 초기화하고 반환합니다.

Implicit(Variable to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 Variable를 초기화하고 반환합니다.

Implicit(T to InArgument<T>)

지정한 값을 사용하여 새 InArgument<T>를 초기화하고 반환합니다.

Implicit(Activity<T> to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 Activity<TResult>를 초기화하고 반환합니다.

public:
 static operator System::Activities::InArgument<T> ^(System::Activities::Activity<T> ^ expression);
public static implicit operator System.Activities.InArgument<T> (System.Activities.Activity<T> expression);
static member op_Implicit : System.Activities.Activity<'T> -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (expression As Activity(Of T)) As InArgument(Of T)

매개 변수

expression
Activity<T>

인수 값입니다.

반환

새 인수입니다.

적용 대상

Implicit(DelegateArgument to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 DelegateArgument를 초기화하고 반환합니다.

public:
 static operator System::Activities::InArgument<T> ^(System::Activities::DelegateArgument ^ delegateArgument);
public static implicit operator System.Activities.InArgument<T> (System.Activities.DelegateArgument delegateArgument);
static member op_Implicit : System.Activities.DelegateArgument -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (delegateArgument As DelegateArgument) As InArgument(Of T)

매개 변수

delegateArgument
DelegateArgument

인수 값입니다.

반환

새 인수입니다.

적용 대상

Implicit(Variable to InArgument<T>)

지정한 InArgument<T>를 사용하여 새 Variable를 초기화하고 반환합니다.

public:
 static operator System::Activities::InArgument<T> ^(System::Activities::Variable ^ variable);
public static implicit operator System.Activities.InArgument<T> (System.Activities.Variable variable);
static member op_Implicit : System.Activities.Variable -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (variable As Variable) As InArgument(Of T)

매개 변수

variable
Variable

인수 값입니다.

반환

새 인수입니다.

적용 대상

Implicit(T to InArgument<T>)

지정한 값을 사용하여 새 InArgument<T>를 초기화하고 반환합니다.

public:
 static operator System::Activities::InArgument<T> ^(T constValue);
public static implicit operator System.Activities.InArgument<T> (T constValue);
static member op_Implicit : 'T -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (constValue As T) As InArgument(Of T)

매개 변수

constValue
T

인수 값입니다.

반환

새 인수입니다.

적용 대상