C# Класс CqlSharp.Threading.AutoConfiguredAwaiter

Awaiter that automatically determines how awaits need to be continued
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetResult ( ) : void

Gets the result.

OnCompleted ( System.Action continuation ) : void

Schedules the continuation action that's invoked when the instance completes.

Приватные методы

Метод Описание
AutoConfiguredAwaiter ( System.Threading.Tasks.Task task ) : System
UnsafeOnCompleted ( System.Action continuation ) : void

Описание методов

GetResult() публичный Метод

Gets the result.
public GetResult ( ) : void
Результат void

OnCompleted() публичный Метод

Schedules the continuation action that's invoked when the instance completes.
/// The argument is null (Nothing in /// Visual Basic). ///
public OnCompleted ( System.Action continuation ) : void
continuation System.Action The action to invoke when the operation completes.
Результат void