Namespace: Interstellar
Assembly: Interstellar.Core.dll
Base Type:
obj
All Interfaces:
IBrowser
| Instance member | Description |
|
|
Full Usage:
this.AreDevToolsShowing
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.CanGoBack
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.CanGoForward
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.CanShowDevTools
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.CloseDevTools()
Modifiers: abstract |
|
|
|
Full Usage:
this.ExecuteJavascript(arg1)
Parameters:
string
Modifiers: abstract |
NOTE: Prefer ExecuteJavascriptf (notice the "f") for formatting untrusted inputs into the script, as using ExecuteJavascript directly could render your app vulnerable to script injection. For example, instead of doing this: browser.ExecuteJavascript (sprintf "console.log('%s')" unsafeUserInput)
which is not safe, do this:
browser.ExecuteJavascriptf "console.log('%s')" unsafeUserInput
which is safe. Or, equivalently:
executeJavascriptf browser "console.log('%s')" unsafeUserInput
|
Full Usage:
this.GoBack()
Modifiers: abstract |
|
Full Usage:
this.GoForward()
Modifiers: abstract |
|
Full Usage:
this.JavascriptMessageRecieved
Returns: IEvent<string>
Modifiers: abstract |
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
this.PageTitle
Returns: string
Modifiers: abstract |
|
Full Usage:
this.PageTitleChanged
Returns: IEvent<string>
Modifiers: abstract |
|
Full Usage:
this.Reload()
Modifiers: abstract |
|
Full Usage:
this.ShowDevTools()
Modifiers: abstract |
|