Summary
Adds a finally handler to be executed after the task have finished executing.
- Namespace
- Cake
.Core - Containing Type
- Cake
Task Builder Of T Extensions
Syntax
public static CakeTaskBuilder<TData> Finally<TData>(this CakeTaskBuilder<TData> builder, Action<ICakeContext, TData> finallyHandler)
where TData : class
Type Parameters
Name | Description |
---|---|
TData | The type of the data context. |
Parameters
Name | Type | Description |
---|---|---|
builder | CakeTaskBuilder |
The builder. |
finallyHandler | Action |
The finally handler. |
Return Value
Type | Description |
---|---|
CakeTaskBuilder |
The same CakeTaskBuilder<TData> instance so that multiple calls can be chained. |