Represents a delegate that decorates an action.
Namespace:
Gallio.CommonAssembly: Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)
Syntax
| C# |
|---|
public delegate void ActionDecorator<T1, T2>( T1 arg1, T2 arg2, Action<T1, T2> action ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Sub ActionDecorator(Of T1, T2) ( _ arg1 As T1, _ arg2 As T2, _ action As Action(Of T1, T2) _ ) |
Parameters
- arg1
- Type: T1
The first argument.
- arg2
- Type: T2
The second argument.
- action
- Type: Gallio.Common..::.Action<(Of <(T1, T2>)>)
The action to decorate which should be called in the middle of applying the decoration.
Type Parameters
- T1
- The first argument type.
- T2
- The second argument type.
