TaskAwaiter Struct
Definition
Provides an object that waits for the completion of an asynchronous task.
This API supports the product infrastructure and is not intended to be used directly from your code.
public value class TaskAwaiter : System::Runtime::CompilerServices::ICriticalNotifyCompletion
public struct TaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion
type TaskAwaiter = struct
interface ICriticalNotifyCompletion
interface INotifyCompletion
Public Structure TaskAwaiter
Implements ICriticalNotifyCompletion
- Inheritance
- Implements
Remarks
This type and its members are intended for compiler use only.
Properties
IsCompleted |
This API supports the product infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether the asynchronous task has completed. |
Methods
GetResult() |
This API supports the product infrastructure and is not intended to be used directly from your code. Ends the wait for the completion of the asynchronous task. |
OnCompleted(Action) |
This API supports the product infrastructure and is not intended to be used directly from your code. Sets the action to perform when the TaskAwaiter object stops waiting for the asynchronous task to complete. |
UnsafeOnCompleted(Action) |
This API supports the product infrastructure and is not intended to be used directly from your code. Schedules the continuation action for the asynchronous task that is associated with this awaiter. |