Summary
Adds an action to be executed when the task is invoked.
- Namespace
- Cake
.Core - Containing Type
- Cake
Task Builder Of T Extensions
Syntax
public static CakeTaskBuilder<TData> Does<TData>(this CakeTaskBuilder<TData> builder, Action<ICakeContext, TData> action)
where TData : class
Type Parameters
Name | Description |
---|---|
TData | The type of the data context. |
Parameters
Name | Type | Description |
---|---|---|
builder | CakeTaskBuilder |
The task builder. |
action | Action |
The action. |
Return Value
Type | Description |
---|---|
CakeTaskBuilder |
The same CakeTaskBuilder<TData> instance so that multiple calls can be chained. |