Summary
Adds an action to be executed foreach item returned by the items function.
This method will be executed the first time the task is executed.
- Namespace
- Cake
.Core - Containing Type
- Cake
Task Builder Of T Extensions
Syntax
public static CakeTaskBuilder<TData> DoesForEach<TData, TItem>(this CakeTaskBuilder<TData> builder, Func<TData, ICakeContext, IEnumerable<TItem>> itemsFunc, Action<TData, TItem, ICakeContext> action)
where TData : class
Type Parameters
Name | Description |
---|---|
TData | The type of the data context. |
TItem | The item type. |
Parameters
Name | Type | Description |
---|---|---|
builder | CakeTaskBuilder |
The task builder. |
itemsFunc | Func |
The items. |
action | Action |
The action. |
Return Value
Type | Description |
---|---|
CakeTaskBuilder |
The same CakeTaskBuilder<TData> instance so that multiple calls can be chained. |