TaskAsyncEnumerableExtensions.ConfigureAwait Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ConfigureAwait(IAsyncDisposable, Boolean) |
Configures how awaits on the tasks returned from an async disposable will be performed. |
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean) |
Configures how awaits on the tasks returned from an async iteration will be performed. |
ConfigureAwait(IAsyncDisposable, Boolean)
Configures how awaits on the tasks returned from an async disposable will be performed.
public:
[System::Runtime::CompilerServices::Extension]
static System::Runtime::CompilerServices::ConfiguredAsyncDisposable ConfigureAwait(IAsyncDisposable ^ source, bool continueOnCapturedContext);
public static System.Runtime.CompilerServices.ConfiguredAsyncDisposable ConfigureAwait (this IAsyncDisposable source, bool continueOnCapturedContext);
static member ConfigureAwait : IAsyncDisposable * bool -> System.Runtime.CompilerServices.ConfiguredAsyncDisposable
<Extension()>
Public Function ConfigureAwait (source As IAsyncDisposable, continueOnCapturedContext As Boolean) As ConfiguredAsyncDisposable
Parameters
- source
- IAsyncDisposable
The source async disposable.
- continueOnCapturedContext
- Boolean
Whether to capture and marshal back to the current context.
Returns
The configured async disposable.
Applies to
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean)
Configures how awaits on the tasks returned from an async iteration will be performed.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::CompilerServices::ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait(System::Collections::Generic::IAsyncEnumerable<T> ^ source, bool continueOnCapturedContext);
public static System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait<T> (this System.Collections.Generic.IAsyncEnumerable<T> source, bool continueOnCapturedContext);
static member ConfigureAwait : System.Collections.Generic.IAsyncEnumerable<'T> * bool -> System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<'T>
<Extension()>
Public Function ConfigureAwait(Of T) (source As IAsyncEnumerable(Of T), continueOnCapturedContext As Boolean) As ConfiguredCancelableAsyncEnumerable(Of T)
Type Parameters
- T
The type of the objects being iterated.
Parameters
- source
- IAsyncEnumerable<T>
The source enumerable being iterated.
- continueOnCapturedContext
- Boolean
Whether to capture and marshal back to the current context.
Returns
The configured enumerable.