TaskAwaiter Struct
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.
Provides an object that waits for the completion of an asynchronous task.
public value class TaskAwaiter : System::Runtime::CompilerServices::ICriticalNotifyCompletion
public struct TaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion
public readonly struct TaskAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion
type TaskAwaiter = struct
interface ICriticalNotifyCompletion
interface INotifyCompletion
Public Structure TaskAwaiter
Implements ICriticalNotifyCompletion
- Inheritance
- Implements
Remarks
This type is 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() |
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. |