Argument.EvaluationOrder Property (System.Activities)

Switch View :
ScriptFree
.NET Framework Class Library
Argument.EvaluationOrder Property

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

Namespace:  System.Activities
Assembly:  System.Activities (in System.Activities.dll)
Syntax

Visual Basic
Public Property EvaluationOrder As Integer
C#
public int EvaluationOrder { get; set; }
Visual C++
public:
property int EvaluationOrder {
	int get ();
	void set (int value);
}
F#
member EvaluationOrder : int with get, set

Property Value

Type: System.Int32
A zero-based value that specifies the order in which the argument is evaluated.
Exceptions

Exception Condition
ArgumentOutOfRangeException

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. 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.

Version Information

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4
Platforms

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.
See Also

Reference