WindowsRuntimeSystemExtensions.GetAwaiter<TProgress> Method (IAsyncActionWithProgress<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 action that reports progress.
Namespace: System
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
public static TaskAwaiter GetAwaiter<TProgress>( this IAsyncActionWithProgress<TProgress> source )
Type Parameters
- TProgress
The type of object that provides data that indicates progress.
Parameters
- source
- Type: IAsyncActionWithProgress<TProgress>
The asynchronous action to await.
Return Value
Type: System.Runtime.CompilerServices.TaskAwaiterAn object that awaits the specified asynchronous action.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IAsyncActionWithProgress<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: