AsyncExBuilder Type
Builds an asynchronous workflow using computation expression syntax.
The difference between the AsyncBuilder and AsyncExBuilder is follows:
Allows use onSystem.IAsyncDisposable Allows let! for Tasks, ValueTasks, and any Awaitable TypeWhen Tasks throw exceptions they will use the behavior described in Async.Await overload (esp. AwaitTask without throwing AggregateException)
Constructors
| Constructor | Description |
|
|
Instance members
| Instance member | Description |
|
|
|
|
|
|
|
|
Full Usage:
this.For
Parameters:
IAsyncEnumerable<'e>
body : 'e -> Async<unit>
Returns: Async<unit>
Modifiers: inline Type parameters: 'e |
|
Full Usage:
this.Return
Parameters:
'i
Returns: Async<'i>
Modifiers: inline Type parameters: 'i |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IcedTasks