InArgument<T> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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>(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>
。