IJsObjectInvokeAsync Method (String, Object) |
Asynchronously executes the function with the given methodName and the args
in the JavaScript object without blocking the current thread.
Namespace:
DotNetBrowser.Js
Assembly:
DotNetBrowser (in DotNetBrowser.dll) Version: 2.23.2
Syntax Task<Object> InvokeAsync(
string methodName,
params Object[] args
)
Parameters
- methodName
- Type: SystemString
The function name. - args
- Type: SystemObject
The list of input arguments. The following types are supported: Boolean,
Double, String, IJsObject, or Object.
Return Value
Type:
TaskObject
The task that can be used to wait for completion and obtain the result of the JavaScript function execution.
Exceptions Remarks
If the function raises an exception, the task will complete with
JsException containing an error
message that describes the reason of the exception. Same error message will be printed in JavaScript Console.
See Also