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