OutArgument<T> Class
A binding terminal that represents the flow of data out of an activity.
System.Activities::Argument
System.Activities::OutArgument
System.Activities::OutArgument<T>
Assembly: System.Activities (in System.Activities.dll)
The OutArgument<T> type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | OutArgument<T>() | Initialize a new instance of the OutArgument<T> class using default values. |
![]() | OutArgument<T>(Activity<Location<T>>) | Initializes a new instance of the OutArgument<T> class using the specified Activity<TResult>. |
![]() | OutArgument<T>(DelegateArgument) | Initializes a new instance of the OutArgument<T> class using the specified DelegateArgument. |
![]() | OutArgument<T>(Expression<Func<ActivityContext, T>>) | Initializes a new instance of the OutArgument<T> class using the specified expression. |
![]() | OutArgument<T>(Variable) | Initializes a new instance of the OutArgument<T> class using the specified Variable. |
| Name | Description | |
|---|---|---|
![]() | ArgumentType | Gets the data type for the data bound to this Argument. (Inherited from Argument.) |
![]() | 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 OutArgument<T>. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() | FromDelegateArgument | Initializes and returns a new OutArgument<T> constructed using the specified DelegateArgument. |
![]() ![]() | FromExpression | Initializes and returns a new OutArgument<T> constructed using the specified Activity<TResult>. |
![]() ![]() | FromVariable | Initializes and returns a new OutArgument<T> constructed using the specified Variable. |
![]() | Get | Gets the value of the OutArgument<T> using the specified activity context. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetLocation | Gets the location of the value for the OutArgument<T>. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Set(ActivityContext, Object) | Sets the value of the argument using the specified activity context. (Inherited from Argument.) |
![]() | Set(ActivityContext, T) | Sets the value of the OutArgument<T> using the specified activity context. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Implicit(Activity<Location<T>> to OutArgument<T>) | Initializes and returns a new OutArgument<T> constructed using the specified Activity<TResult>. |
![]() ![]() | Implicit(DelegateArgument to OutArgument<T>) | Initializes and returns a new OutArgument<T> constructed using the specified DelegateArgument. |
![]() ![]() | Implicit(Variable to OutArgument<T>) | Initializes and returns a new OutArgument<T> constructed using the specified Variable. |
An OutArgument<T> is used to flow data out of an activity. If the activity is the root activity of a workflow, then it is also used to flow data out of the workflow to the workflow host. In this example, a custom Divide activity that has two input arguments and one output argument is used as the root activity of a workflow. The host application passes two values into the workflow and then retrieves the result of the division after the workflow completes.
int dividend = 500; int divisor = 36; Dictionary<string, object> arguments = new Dictionary<string, object>(); arguments.Add("Dividend", dividend); arguments.Add("Divisor", divisor); IDictionary<string, object> outputs = WorkflowInvoker.Invoke(new Divide(), arguments); Console.WriteLine("{0} / {1} = {2} Remainder {3}", dividend, divisor, outputs["Result"], outputs["Remainder"]);
The Divide activity uses arguments to receive the input values and to provide the computed result values. The Remainder OutArgument<T> is used to pass out the remainder of the division, and the Result output argument provided by Activity<TResult> derived activities is used to pass out the quotient.
Note |
|---|
If your custom activity is derived from the generic CodeActivity<TResult> with an Int32 as its generic type argument, when you invoke the activity with the WorkflowInvoker Invoke method, it returns an Int32 value. In Addition, the CodeActivity<TResult>::Execute(CodeActivityContext) method will return an Int32 value instead of void and you do not need to set a return value. |
public sealed class Divide : CodeActivity { [RequiredArgument] public InArgument<int> Dividend { get; set; } [RequiredArgument] public InArgument<int> Divisor { get; set; } public OutArgument<int> Remainder { get; set; } public OutArgument<int> Result { get; set; } protected override void Execute(CodeActivityContext context) { int quotient = Dividend.Get(context) / Divisor.Get(context); int remainder = Dividend.Get(context) % Divisor.Get(context); Result.Set(context, quotient); Remainder.Set(context, remainder); } }
The following code sample demonstrates creating an OutArgument<T>. This example is from the Formatter sample.
Sequence workflow = new Sequence { Variables = { mealExpense, result }, Activities = { new Assign<Expense> { Value = new InArgument<Expense>( (e) => new Meal { Amount = 50, Location = "Redmond", Vendor = "KFC" }), To = new OutArgument<Expense>(mealExpense) }, new WriteLine { Text = new InArgument<string>("Hello") }, approveExpense, new ReceiveReply { Request = approveExpense, Content = ReceiveContent.Create(new OutArgument<bool>(result)) }, new If { Condition = new InArgument<bool> (result), Then = new WriteLine { Text = new InArgument<string>("Expense Approved") }, Else = new WriteLine { Text = new InArgument<string>("Expense Cannot be Approved") }, }, } };
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
