JavaScriptExtensionsToPromiseT Method (TaskT, ScriptEngine) |
Converts a
TaskTResult instance to a
promise
for use with script code running in the specified script engine.
Namespace:
Microsoft.ClearScript.JavaScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic static Object ToPromise<T>(
this Task<T> task,
ScriptEngine engine
)
<ExtensionAttribute>
Public Shared Function ToPromise(Of T) (
task As Task(Of T),
engine As ScriptEngine
) As Object
public:
[ExtensionAttribute]
generic<typename T>
static Object^ ToPromise(
Task<T>^ task,
ScriptEngine^ engine
)
[<ExtensionAttribute>]
static member ToPromise :
task : Task<'T> *
engine : ScriptEngine -> Object
Parameters
- task
- Type: System.Threading.TasksTaskT
The task to convert to a promise. - engine
- Type: Microsoft.ClearScriptScriptEngine
The script engine in which the promise will be used.
Type Parameters
- T
- The task's result type.
Return Value
Type:
ObjectA 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