WindowsRuntimeSystemExtensions::GetAwaiter<TResult, TProgress> Method (IAsyncOperationWithProgress<TResult, TProgress>)
.NET Framework (current version)
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Returns an object that awaits an asynchronous operation that reports progress and returns a result.
Namespace: System
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[ExtensionAttribute] public: generic<typename TResult, typename TProgress> static TaskAwaiter<TResult> GetAwaiter( IAsyncOperationWithProgress<TResult, TProgress>^ source )
Type Parameters
- TResult
The type of object that returns the result of the asynchronous operation.
- TProgress
The type of object that provides data that indicates progress.
Parameters
- source
- Type: IAsyncOperationWithProgress<TResult, TProgress>
The asynchronous operation to await.
Return Value
Type: System.Runtime.CompilerServices::TaskAwaiter<TResult>An object that awaits the specified asynchronous operation.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IAsyncOperationWithProgress<TResult, TProgress>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Show: