CakeEngine.

RegisterTeardownAction(Action<ITeardownContext>) Method

Summary

Allows registration of an action that's executed after all other tasks have been run. If a setup action or a task fails with or without recovery, the specified teardown action will still be executed.
Namespace
Cake.Core
Containing Type
CakeEngine

Syntax

public void RegisterTeardownAction(Action<ITeardownContext> action)

Parameters

Name Type Description
action Action<ITeardownContext> The action to be executed.

Return Value

Type Description
void