TaskAsyncEnumerableExtensions.ConfigureAwait Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ConfigureAwait(IAsyncDisposable, Boolean) |
Configura como as esperas nas tarefas retornadas de um descartável assíncrono serão executadas. |
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean) |
Configura como as esperas nas tarefas retornadas de uma iteração assíncrona serão executadas. |
ConfigureAwait(IAsyncDisposable, Boolean)
Configura como as esperas nas tarefas retornadas de um descartável assíncrono serão executadas.
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
Parâmetros
- source
- IAsyncDisposable
A fonte assíncrona descartável.
- continueOnCapturedContext
- Boolean
Se deseja capturar e fazer marshalback para o contexto atual.
Retornos
O descartável assíncrono configurado.
Aplica-se a
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean)
Configura como as esperas nas tarefas retornadas de uma iteração assíncrona serão executadas.
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)
Parâmetros de tipo
- T
O tipo dos objetos que estão sendo iterados.
Parâmetros
- source
- IAsyncEnumerable<T>
A origem enumerável que está sendo iterada.
- continueOnCapturedContext
- Boolean
Se deseja capturar e fazer marshalback para o contexto atual.
Retornos
O enumerável configurado.