Click or drag to resize

JavaScriptExtensionsToPromiseT(TaskT) Method

Converts a TaskTResult instance to a promise for use with script code currently running on the calling thread.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public static Object ToPromise<T>(
	this Task<T> task
)

Parameters

task  TaskT
The task to convert to a promise.

Type Parameters

T
The task's result type.

Return Value

Object
A promise that represents the task's asynchronous operation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type TaskT. 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).
See Also