Represents a delegate that decorates an action.

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

Syntax

C#
public delegate void ActionDecorator<T>(
	T obj,
	Action<T> action
)
Visual Basic (Declaration)
Public Delegate Sub ActionDecorator(Of T) ( _
	obj As T, _
	action As Action(Of T) _
)

Parameters

obj
Type: T
The object to act upon.
action
Type: System..::.Action<(Of <(T>)>)
The action to decorate which should be called in the middle of applying the decoration.

Type Parameters

T
The type of object the action is performed upon.

See Also