WindowsRuntimeSystemExtensions::AsAsyncOperation<TResult> Method
Returns a Windows Runtime asynchronous operation that represents a started task that returns a result.
Namespace: System
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[ExtensionAttribute] public: generic<typename TResult> static IAsyncOperation<TResult>^ AsAsyncOperation( Task<TResult>^ source )
Type Parameters
- TResult
The type that returns the result.
Parameters
- source
- Type: System.Threading.Tasks::Task<TResult>
The started task.
Return Value
Type: IAsyncOperation<TResult>A Windows.Foundation.IAsyncOperation<TResult> instance that represents the started task.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Task<TResult>. 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. |
| InvalidOperationException | source is an unstarted task. |
Use this method when you want to pass a task that returns a result to a Windows Runtime method that takes an asynchronous operation.
The AsyncInfo class provides static methods (Shared methods in Visual Basic) that create and start Windows Runtime asynchronous operations that represent tasks that return results and can respond to cancellation requests and report progress.