TaskAsyncEnumerableExtensions.ConfigureAwait 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ConfigureAwait(IAsyncDisposable, Boolean) |
配置如何执行从异步可释放项返回的任务的 await。 |
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean) |
配置如何对从异步迭代返回的任务执行 await。 |
ConfigureAwait(IAsyncDisposable, Boolean)
配置如何执行从异步可释放项返回的任务的 await。
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
参数
- source
- IAsyncDisposable
源异步可释放。
- continueOnCapturedContext
- Boolean
是否捕获并封送回当前上下文。
返回
配置的异步可释放对象。
适用于
ConfigureAwait<T>(IAsyncEnumerable<T>, Boolean)
配置如何对从异步迭代返回的任务执行 await。
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)
类型参数
- T
要迭代的对象的类型。
参数
- source
- IAsyncEnumerable<T>
要迭代的源可枚举。
- continueOnCapturedContext
- Boolean
是否捕获并封送回当前上下文。
返回
配置的可枚举。