IFrameExecuteJavaScriptT Method (String, Boolean) | 
 
                Asynchronously executes JavaScript code using the current context and
                converts the execution result to the specified .NET type.
            
 
    Namespace: 
   DotNetBrowser.Frames
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.6
SyntaxTask<T> ExecuteJavaScript<T>(
	string javaScript,
	bool userGesture = false
)
Parameters
- javaScript
 - Type: SystemString
The JavaScript code. - userGesture (Optional)
 - Type: SystemBoolean
Indicates whether JavaScript is initiated by a user gesture. 
Type Parameters
- T
 - .NET type of the result
 
Return Value
Type: 
TaskTThe task that can be used to wait for completion and obtain the result of the JavaScript execution.
Exceptions| Exception | Condition | 
|---|
| ObjectDisposedException | The IFrame object has already been disposed. | 
| ArgumentException | 
                The javaScript is null, empty, or contains only blank
                characters.
             | 
See Also