InArgument<T> Class
A binding terminal that represents the flow of data into an activity.
Assembly: System.Activities (in System.Activities.dll)
System.Activities::Argument
System.Activities::InArgument
System.Activities::InArgument<T>
| Name | Description | |
|---|---|---|
![]() | InArgument<T>() | Initializes a new instance of the InArgument<T> class using default values. |
![]() | InArgument<T>(T) | Initializes a new instance of the InArgument<T> class using the specified value. |
![]() | InArgument<T>(Activity<T>^) | Initializes a new instance of the InArgument<T> class using the specified Activity<TResult>. |
![]() | InArgument<T>(DelegateArgument^) | Initializes a new instance of the InArgument<T> class using the specified DelegateArgument. |
![]() | InArgument<T>(Expression<Func<ActivityContext^, T>^>^) | Initializes a new instance of the InArgument<T> class using the specified expression. |
![]() | InArgument<T>(Variable^) | Initializes a new instance of the InArgument<T> class using the specified Variable. |
| Name | Description | |
|---|---|---|
![]() | ArgumentType | |
![]() | Direction | Gets an ArgumentDirection that specifies whether the Argument represents the flow of data into an activity, out of an activity, or both into and out of an activity. (Inherited from Argument.) |
![]() | EvaluationOrder | Gets or sets a zero-based value that specifies the order in which the argument is evaluated.(Inherited from Argument.) |
![]() | Expression | Gets an Activity<TResult> that represents the value of this InArgument<T>. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() ![]() | FromDelegateArgument(DelegateArgument^) | Initializes and returns a new InArgument<T> using the specified DelegateArgument. |
![]() ![]() | FromExpression(Activity<T>^) | Initializes and returns a new InArgument<T> using the specified Activity<TResult>. |
![]() ![]() | FromValue(T) | Initializes and returns a new InArgument<T> using the specified value. |
![]() ![]() | FromVariable(Variable^) | Initializes and returns a new InArgument<T> using the specified Variable. |
![]() | Get(ActivityContext^) | Gets the value of the InArgument<T> using the specified activity context. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLocation(ActivityContext^) | |
![]() | GetType() | |
![]() | Set(ActivityContext^, T) | Sets the value of the InArgument<T> using the specified value. |
![]() | Set(ActivityContext^, Object^) | Sets the value of the argument using the specified activity context.(Inherited from Argument.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Implicit(T to InArgument<T>^) | Initializes and returns a new InArgument<T> using the specified value. |
![]() ![]() | Implicit(Activity<T>^ to InArgument<T>^) | Initializes and returns a new InArgument<T> using the specified Activity<TResult>. |
![]() ![]() | Implicit(DelegateArgument^ to InArgument<T>^) | Initializes and returns a new InArgument<T> using the specified DelegateArgument. |
![]() ![]() | Implicit(Variable^ to InArgument<T>^) | Initializes and returns a new InArgument<T> using the specified Variable. |
In this example, a workflow is created that consists of a single WriteLine activity. The WriteLine activity has an InArgument<T> named Text. The host application creates an instance of the workflow and passes a string, which maps to the Text argument of the WriteLine and is used by the WriteLine activity.
Activity wf = new WriteLine(); Dictionary<string, object> wfParams = new Dictionary<string, object>(); wfParams.Add("Text", "Hello World!"); WorkflowInvoker.Invoke(wf, wfParams);
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



