InArgument<T> 생성자

정의

InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

오버로드

InArgument<T>()

기본값을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>(Activity<T>)

지정된 InArgument<T>를 사용하여 Activity<TResult> 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>(DelegateArgument)

지정된 InArgument<T>를 사용하여 DelegateArgument 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>(Variable)

지정된 InArgument<T>를 사용하여 Variable 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>(Expression<Func<ActivityContext,T>>)

지정한 식을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>(T)

지정한 값을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

InArgument<T>()

기본값을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument();
public InArgument ();
Public Sub New ()

적용 대상

InArgument<T>(Activity<T>)

지정된 InArgument<T>를 사용하여 Activity<TResult> 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument(System::Activities::Activity<T> ^ expression);
public InArgument (System.Activities.Activity<T> expression);
new System.Activities.InArgument<'T> : System.Activities.Activity<'T> -> System.Activities.InArgument<'T>
Public Sub New (expression As Activity(Of T))

매개 변수

expression
Activity<T>

인수 값입니다.

적용 대상

InArgument<T>(DelegateArgument)

지정된 InArgument<T>를 사용하여 DelegateArgument 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument(System::Activities::DelegateArgument ^ delegateArgument);
public InArgument (System.Activities.DelegateArgument delegateArgument);
new System.Activities.InArgument<'T> : System.Activities.DelegateArgument -> System.Activities.InArgument<'T>
Public Sub New (delegateArgument As DelegateArgument)

매개 변수

delegateArgument
DelegateArgument

인수 값입니다.

적용 대상

InArgument<T>(Variable)

지정된 InArgument<T>를 사용하여 Variable 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument(System::Activities::Variable ^ variable);
public InArgument (System.Activities.Variable variable);
new System.Activities.InArgument<'T> : System.Activities.Variable -> System.Activities.InArgument<'T>
Public Sub New (variable As Variable)

매개 변수

variable
Variable

이 인수를 통해 전달되는 데이터입니다.

적용 대상

InArgument<T>(Expression<Func<ActivityContext,T>>)

지정한 식을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument(System::Linq::Expressions::Expression<Func<System::Activities::ActivityContext ^, T> ^> ^ expression);
public InArgument (System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext,T>> expression);
new System.Activities.InArgument<'T> : System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext, 'T>> -> System.Activities.InArgument<'T>
Public Sub New (expression As Expression(Of Func(Of ActivityContext, T)))

매개 변수

expression
Expression<Func<ActivityContext,T>>

인수 값입니다.

적용 대상

InArgument<T>(T)

지정한 값을 사용하여 InArgument<T> 클래스의 새 인스턴스를 초기화합니다.

public:
 InArgument(T constValue);
public InArgument (T constValue);
new System.Activities.InArgument<'T> : 'T -> System.Activities.InArgument<'T>
Public Sub New (constValue As T)

매개 변수

constValue
T

인수 값입니다.

설명

이 워크플로 정의를 사용하여 모든 워크플로 인스턴스에서 constValue 매개 변수를 공유합니다. 예를 들어 경우는 List<string> 변수로 제공 된를 constValue 하 고 세 개의 인스턴스가 생성 된 다음 세 개 모두에 액세스할 것 같은 List<string>합니다.

적용 대상