Add the specified word to the spelling dictionary.
(Defined by WebBrowserExtensions.) BackNavigates back, must check
CanGoBackbefore calling this method.
(Defined by WebBrowserExtensions.) CloseDevToolsExplicitly close the developer tools window if one exists for this browser instance.
(Defined by WebBrowserExtensions.) CopyExecute Copy on the focused frame.
(Defined by WebBrowserExtensions.) CutExecute Cut on the focused frame.
(Defined by WebBrowserExtensions.) DeleteExecute Delete on the focused frame.
(Defined by WebBrowserExtensions.) DestroyWindowManually call https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-destroywindow passing in the handle returned from
GetWindowHandle. This method can be used to manually close the underlying CefBrowser instance. This will avoid the WM_Close message that CEF sends by default to the top level window. (Which closes your application). This method should generally only be used in the WinForms version.
(Defined by WebBrowserExtensions.) EnsureObjectBoundAsyncMake sure an object is bound in javascript. Executes against the main frame
(Defined by JavascriptBindingExtensions.) EvaluateScriptAsPromiseAsyncEvaluate Javascript in the context of the MainFrame of the ChromiumWebBrowser. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript. The result of the script execution in javascript is Promise.resolve so even no promise values will be treated as a promise. Your javascript should return a value. The javascript will be wrapped in an Immediately Invoked Function Expression. When the promise either trigger then/catch this returned Task will be completed.
(Defined by WebBrowserExtensions.) EvaluateScriptAsync(String, Object) Overloaded.Evaluate some Javascript code in the context of this WebBrowser. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript This simple helper extension will encapsulate params in single quotes (unless int, uint, etc)
(Defined by WebBrowserExtensions.) EvaluateScriptAsync(NullableTimeSpan, String, Object) Overloaded.Evaluate Javascript code in the context of this WebBrowser using the specified timeout. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript This simple helper extension will encapsulate params in single quotes (unless int, uint, etc).
(Defined by WebBrowserExtensions.) EvaluateScriptAsync(String, NullableTimeSpan, Boolean) Overloaded.Evaluate Javascript in the context of this Browsers Main Frame. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript
(Defined by WebBrowserExtensions.) EvaluateScriptAsyncT(String, NullableTimeSpan) Overloaded.Evaluate Javascript in the context of this Browsers Main Frame. The script will be executed asynchronously and the method returns a Task encapsulating the response from the Javascript
(Defined by WebBrowserExtensionsEx.) ExecuteDevToolsMethodAsyncExecute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage.
ExecuteDevToolsMethod(IBrowserHost, Int32, String, JsonString)can only be called on the CEF UI Thread, this method can be called on any thread. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected
parametersdictionary contents. See the SendDevToolsMessage documentation for additional usage information.
(Defined by DevToolsExtensions.) ExecuteScriptAsync(String) Overloaded.Execute Javascript in the context of this Browsers Main Frame. As the method name implies, the script will be executed asynchronously, and the method therefore returns before the script has actually been executed.
(Defined by WebBrowserExtensions.) ExecuteScriptAsync(String, Object) Overloaded.Execute Javascript code in the context of this Browser. As the method name implies, the script will be executed asynchronously, and the method therefore returns before the script has actually been executed. This simple helper extension will encapsulate params in single quotes (unless int, uint, etc)
(Defined by WebBrowserExtensions.) ExecuteScriptAsyncWhenPageLoadedExecute Javascript code in the context of this Browsers Main Frame. This extension method uses the LoadingStateChanged event. As the method name implies, the script will be executed asynchronously, and the method therefore returns before the script has actually been executed.
(Defined by WebBrowserExtensions.) FindSearch for text within the current page.
(Defined by WebBrowserExtensions.) ForwardNavigates forward, must check
CanGoForwardbefore calling this method.
(Defined by WebBrowserExtensions.) GetBrowserHostShortcut method to get the browser IBrowserHost.
(Defined by WebBrowserExtensions.) GetCookieManager (Defined by WebBrowserExtensions.) GetDevToolsClientGets a new Instance of the DevTools client for the chromiumWebBrowser instance.
(Defined by DevToolsExtensions.) GetFocusedFrameReturns the focused frame for the browser window.
(Defined by WebBrowserExtensions.) GetMainFrameReturns the main (top-level) frame for the browser window.
(Defined by WebBrowserExtensions.) GetRequestContext (Defined by WebBrowserExtensions.) GetSourceAsyncRetrieve the main frame's HTML source using a
TaskTResult.
(Defined by WebBrowserExtensions.) GetTextAsyncRetrieve the main frame's display text using a
TaskTResult.
(Defined by WebBrowserExtensions.) GetVisibleNavigationEntryAsync (Defined by WebBrowserExtensionsEx.) GetZoomLevelAsyncAsynchronously gets the current Zoom Level.
(Defined by WebBrowserExtensions.) LoadHtml(String, Boolean) Overloaded.Loads html as Data Uri See https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs for details If base64Encode is false then html will be Uri encoded.
(Defined by WebBrowserExtensions.) LoadHtml(String, String) Overloaded. (Defined by WebBrowserExtensions.) LoadHtml(String, String, Encoding, Boolean) Overloaded. (Defined by WebBrowserExtensions.) LoadUrlWithPostDataCreates a new instance of IRequest with the specified Url and Method = POST and then calls
LoadRequest(IRequest).
(Defined by WebBrowserExtensions.) PasteExecute Paste on the focused frame.
(Defined by WebBrowserExtensions.) PrintOpens a Print Dialog which if used (can be user cancelled) will print the browser contents.
(Defined by WebBrowserExtensions.) PrintToPdfAsyncAsynchronously prints the current browser contents to the PDF file specified. The caller is responsible for deleting the file when done.
(Defined by WebBrowserExtensions.) RedoExecute Redo on the focused frame.
(Defined by WebBrowserExtensions.) RegisterAsyncJsObjectAsynchronously registers a Javascript object in this specific browser instance.
Only methods of the object will be availabe.
(Defined by WebBrowserExtensions.) RegisterJsObjectRegisters a Javascript object in this specific browser instance.
(Defined by WebBrowserExtensions.) RegisterResourceHandlerRegister a ResourceHandler. Can only be used when browser.ResourceHandlerFactory is an instance of DefaultResourceHandlerFactory.
(Defined by WebBrowserExtensions.) Reload Overloaded.Reloads the page being displayed. This method will use data from the browser's cache, if available.
(Defined by WebBrowserExtensions.) Reload(Boolean) Overloaded.Reloads the page being displayed, optionally ignoring the cache (which means the whole page including all .css, .js etc. resources will be re-fetched).
(Defined by WebBrowserExtensions.) ReplaceMisspellingIf a misspelled word is currently selected in an editable node calling this method will replace it with the specified word.
(Defined by WebBrowserExtensions.) SelectAllExecute SelectAll on the focused frame.
(Defined by WebBrowserExtensions.) SendMouseWheelEventSend a mouse wheel event to the browser.
(Defined by WebBrowserExtensions.) SetAsPopupAn IWebBrowser extension method that sets the
HasParentproperty used when passing a ChromiumWebBrowser instance to
OnBeforePopup(IWebBrowser, IBrowser, IFrame, String, String, WindowOpenDisposition, Boolean, IPopupFeatures, IWindowInfo, IBrowserSettings, Boolean, IWebBrowser) (Defined by WebBrowserExtensions.) SetMainFrameDocumentContentAsyncSet the Document Content for the Main Frame using DevTools Protocol.
(Defined by DevToolsExtensions.) SetZoomLevelChange the ZoomLevel to the specified value. Can be set to 0.0 to clear the zoom level.
(Defined by WebBrowserExtensions.) ShowDevToolsOpen developer tools in its own window.
(Defined by WebBrowserExtensions.) ShowDevToolsDocked(ActionChromiumHostControl, String, DockStyle, Int32, Int32) Overloaded.Open DevTools using your own Control as the parent. If inspectElementAtX and/or inspectElementAtY are specified then the element at the specified (x,y) location will be inspected. For resize/moving to work correctly you will need to use the
LifeSpanHandlerimplementation. (Set
LifeSpanHandlerto an instance of
LifeSpanHandler)
(Defined by WebBrowserExtensions.) ShowDevToolsDocked(Control, String, DockStyle, Int32, Int32) Overloaded.Open DevTools using
parentControlas the parent control. If inspectElementAtX and/or inspectElementAtY are specified then the element at the specified (x,y) location will be inspected. For resize/moving to work correctly you will need to use the
LifeSpanHandlerimplementation. (Set
LifeSpanHandlerto an instance of
LifeSpanHandler)
(Defined by WebBrowserExtensions.) StartDownload (Defined by WebBrowserExtensions.) StopStops loading the current page.
(Defined by WebBrowserExtensions.) StopFindingCancel all searches that are currently going on.
(Defined by WebBrowserExtensions.) ToggleAudioMuteToggles audio mute for the current browser. If the browser is null or has been disposed then this command will be a no-op.
(Defined by WebBrowserExtensionsEx.) UndoExecute Undo on the focused frame.
(Defined by WebBrowserExtensions.) UnRegisterResourceHandlerUnregister a ResourceHandler. Can only be used when browser.ResourceHandlerFactory is an instance of DefaultResourceHandlerFactory.
(Defined by WebBrowserExtensions.) ViewSourceOpens up a new program window (using the default text editor) where the source code of the currently displayed web page is shown.
(Defined by WebBrowserExtensions.) WaitForSelectorAsyncWaits for a DOM element specified by the selector string to be added to or removed from the DOM. A simplified version of Puppeteer WaitForSelector. Uses a MutationObserver to wait for the element to become added or removed.
(Defined by WebBrowserExtensions.)RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4