Gets or sets the order in which the decorator should be applied.

Namespace:  Gallio.Framework.Pattern
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public int Order { get; set; }
Visual Basic (Declaration)
Public Property Order As Integer

Field Value

The default order index is 0.

Remarks

Decorators with lower order indices values are applied before decorators with higher ones. In the case of a tie, an arbitrary choice is made among decorators with the same order index to determine the order in which they will be processed.

See Also