Gets or sets a representation of the chain as a single action.

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

Syntax

C#
public Action<T1, T2> Action { get; set; }
Visual Basic (Declaration)
Public Property Action As Action(Of T1, T2)

Remarks

The action is progressively augmented as new contributions are registered using Before(Action<(Of <(T1, T2>)>)), After(Action<(Of <(T1, T2>)>)) and Around(ActionDecorator<(Of <(T1, T2>)>)). By default the action is NoOp.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if value is null.

See Also