WindowsRuntimeSystemExtensions::AsTask<TResult, TProgress> Method (IAsyncOperationWithProgress<TResult, TProgress>, IProgress<TProgress>)
Returns a task that represents Windows Runtime asynchronous operation that returns a result and reports progress.
Namespace: System
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[ExtensionAttribute] public: generic<typename TResult, typename TProgress> static Task<TResult>^ AsTask( IAsyncOperationWithProgress<TResult, TProgress>^ source, IProgress<TProgress>^ progress )
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.
- progress
- Type: System::IProgress<TProgress>
An object that receives progress updates.
Return Value
Type: System.Threading.Tasks::Task<TResult>A task that represents the 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).| Exception | Condition |
|---|---|
| ArgumentNullException | source is nullptr. |
Use this method to get a Task<TResult> object for a Windows Runtime asynchronous operation. Task<TResult> objects simplify the coordination of asynchronous operations.