TaskAwaiter<TResult> 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.
Represents an object that waits for the completion of an asynchronous task and provides a parameter for the result.
generic <typename TResult>
public value class TaskAwaiter : System::Runtime::CompilerServices::ICriticalNotifyCompletion
public struct TaskAwaiter<TResult> : System.Runtime.CompilerServices.ICriticalNotifyCompletion
public readonly struct TaskAwaiter<TResult> : System.Runtime.CompilerServices.ICriticalNotifyCompletion
type TaskAwaiter<'Result> = struct
interface ICriticalNotifyCompletion
interface INotifyCompletion
Public Structure TaskAwaiter(Of TResult)
Implements ICriticalNotifyCompletion
Type Parameters
- TResult
The result for the task.
- 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<TResult> 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 associated with this awaiter. |