Argument.EvaluationOrder Property

Definition

Gets or sets a zero-based value that specifies the order in which the argument is evaluated.

public:
 property int EvaluationOrder { int get(); void set(int value); };
public int EvaluationOrder { get; set; }
member this.EvaluationOrder : int with get, set
Public Property EvaluationOrder As Integer

Property Value

A zero-based value that specifies the order in which the argument is evaluated.

Exceptions

The value is less than zero and not equal to UnspecifiedEvaluationOrder.

Remarks

By default, the evaluation order of the argument is unspecified and is equal to the UnspecifiedEvaluationOrder value. Set EvaluationOrder to a value greater or equal to zero to specify an evaluation order for this argument. Windows Workflow Foundation evaluates arguments with a specified evaluation order in ascending order. Note that arguments with an unspecified evaluation order are evaluated before those with a specified evaluation order.

Applies to