Registers an action to perform after all other actions
currently in the chain.
Namespace:
Gallio.CommonAssembly: Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)
Syntax
| C# |
|---|
public void After( Action<T1, T2> action ) |
| Visual Basic (Declaration) |
|---|
Public Sub After ( _ action As Action(Of T1, T2) _ ) |
Parameters
- action
- Type: Gallio.Common..::.Action<(Of <(T1, T2>)>)
The action to register.
Remarks
The value of Action will be set to a new instance that performs the specified action after the current Action.
Exceptions
| Exception | Condition |
|---|---|
| System..::.ArgumentNullException | Thrown if action is null. |
