IBrowserHost Interface (original) (raw)

Name

Description

Public method

AddDevToolsMessageObserver

Add an observer for DevTools protocol messages (method results and events). The observer will remain registered until the returned Registration object is destroyed. See the SendDevToolsMessage documentation for additional usage information.

Public method

AddWordToDictionary

Add the specified word to the spelling dictionary.

Public method

CloseBrowser

Request that the browser close. The JavaScript 'onbeforeunload' event will be fired.

Public method

CloseDevTools

Explicitly close the developer tools window if one exists for this browser instance.

Public method

Dispose

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

(Inherited from IDisposable.)

Public method

DragSourceEndedAt

Call this method when the drag operation started by a StartDragging(IDragData, DragOperationsMask, Int32, Int32) call has ended either in a drop or by being cancelled. If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* methods. This method is only used when window rendering is disabled.

Public method

DragSourceSystemDragEnded

Call this method when the drag operation started by a StartDragging(IDragData, DragOperationsMask, Int32, Int32) call has completed. This method may be called immediately without first calling DragSourceEndedAt to cancel a drag operation. If the web view is both the drag source and the drag target then all DragTarget* methods should be called before DragSource* mthods. This method is only used when window rendering is disabled.

Public method

DragTargetDragDrop

Public method

DragTargetDragEnter

Public method

DragTargetDragLeave

Public method

DragTargetDragOver

Public method

ExecuteDevToolsMethod(Int32, String, IDictionaryString, Object)

Execute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected parameters dictionary contents. See the SendDevToolsMessage documentation for additional usage information.

Public method

ExecuteDevToolsMethod(Int32, String, String)

Execute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected paramsAsJson dictionary contents. See the SendDevToolsMessage documentation for additional usage information.

Public method

Find

Search for searchText.

Public method

GetNavigationEntries

Retrieve a snapshot of current navigation entries as values sent to the specified visitor.

Public method

GetNextDevToolsMessageId

Public method

GetOpenerWindowHandle

Retrieve the window handle of the browser that opened this browser.

Public method

GetVisibleNavigationEntry

Returns the current visible navigation entry for this browser. This method can only be called on the CEF UI thread which by default is not the same as your application UI thread.

Public method

GetWindowHandle

Retrieve the window handle for this browser.

Public method

GetZoomLevel

Gets the current zoom level. The default zoom level is 0.0. This method can only be called on the CEF UI thread.

Public method

GetZoomLevelAsync

Get the current zoom level. The default zoom level is 0.0. This method executes GetZoomLevel on the CEF UI thread in an async fashion.

Public method

ImeCancelComposition

Cancels the existing composition and discards the composition node contents without applying them. See comments on ImeSetComposition for usage. This method is only used when window rendering is disabled. (WPF and OffScreen)

Public method

ImeCommitText

Completes the existing composition by optionally inserting the specified text into the composition node. This method is only used when window rendering is disabled. (WPF and OffScreen)

Public method

ImeFinishComposingText

Completes the existing composition by applying the current composition node contents. See comments on ImeSetComposition for usage. This method is only used when window rendering is disabled. (WPF and OffScreen)

Public method

ImeSetComposition

Begins a new composition or updates the existing composition. Blink has a special node (a composition node) that allows the input method to change text without affecting other DOM nodes. This method may be called multiple times as the composition changes. When the client is done making changes the composition should either be canceled or completed. To cancel the composition call ImeCancelComposition. To complete the composition call either ImeCommitText or ImeFinishComposingText. Completion is usually signaled when: The client receives a WM_IME_COMPOSITION message with a GCS_RESULTSTR flag (on Windows). This method is only used when window rendering is disabled. (WPF and OffScreen)

Public method

Invalidate

Invalidate the view. The browser will call CefRenderHandler::OnPaint asynchronously. This method is only used when window rendering is disabled (OSR).

Public method

NotifyMoveOrResizeStarted

Notify the browser that the window hosting it is about to be moved or resized. This will dismiss any existing popups (dropdowns).

Public method

NotifyScreenInfoChanged

Send a notification to the browser that the screen info has changed. The browser will then call CefRenderHandler::GetScreenInfo to update the screen information with the new values. This simulates moving the webview window from one display to another, or changing the properties of the current display. This method is only used when window rendering is disabled.

Public method

Print

Print the current browser contents.

Public method

PrintToPdf

Asynchronously prints the current browser contents to the Pdf file specified. The caller is responsible for deleting the file when done.

Public method

ReplaceMisspelling

If a misspelled word is currently selected in an editable node calling this method will replace it with the specified word.

Public method

RunFileDialog

Call to run a file chooser dialog. Only a single file chooser dialog may be pending at any given time. The dialog will be initiated asynchronously on the CEF UI thread.

Public method

SendCaptureLostEvent

Send a capture lost event to the browser.

Public method

SendDevToolsMessage

Send a method call message over the DevTools protocol. messageAsJson must be a UTF8-encoded JSON dictionary that contains "id" (int), "method" (string) and "params" (dictionary, optional) values. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected "params" dictionary contents.messageAsJson will be copied if necessary. This method will return true if called on the CEF UI thread and the message was successfully submitted for validation, otherwise false. Validation will be applied asynchronously and any messages that fail due to formatting errors or missing parameters may be discarded without notification. Prefer ExecuteDevToolsMethod if a more structured approach to message formatting is desired. Every valid method call will result in an asynchronous method result or error message that references the sent message "id". Event messages are received while notifications are enabled (for example, between method calls for "Page.enable" and "Page.disable"). All received messages will be delivered to the observer(s) registered with AddDevToolsMessageObserver. See OnDevToolsMessage(IBrowser, Stream) documentation for details of received message contents. Usage of the SendDevToolsMessage, ExecuteDevToolsMethod and AddDevToolsMessageObserver methods does not require an active DevTools front-end or remote-debugging session. Other active DevTools sessions will continue to function independently. However, any modification of global browser state by one session may not be reflected in the UI of other sessions. Communication with the DevTools front-end (when displayed) can be logged for development purposes by passing the `--devtools-protocol-log-file=` command-line flag.

Public method

SendExternalBeginFrame

Public method

SendFocusEvent

Send a focus event to the browser. . (Used for OSR Rendering e.g. WPF or OffScreen)

Public method

SendKeyEvent(KeyEvent)

Send a key event to the browser.

Public method

SendKeyEvent(Int32, Int32, Int32)

Send key event to browser based on operating system message

Public method

SendMouseClickEvent

Send a mouse click event to the browser.

Public method

SendMouseMoveEvent

Send a mouse move event to the browser, coordinates,

Public method

SendMouseWheelEvent

Send a mouse wheel event to the browser.

Public method

SendTouchEvent

Send a touch event to the browser. WPF and OffScreen browsers only

Public method

SetAccessibilityState

Set accessibility state for all frames. If accessibilityState is Default then accessibility will be disabled by default and the state may be further controlled with the "force-renderer-accessibility" and "disable-renderer-accessibility" command-line switches. If accessibilityState is STATE_ENABLED then accessibility will be enabled. If accessibilityState is STATE_DISABLED then accessibility will be completely disabled. For windowed browsers accessibility will be enabled in Complete mode (which corresponds to kAccessibilityModeComplete in Chromium). In this mode all platform accessibility objects will be created and managed by Chromium's internal implementation. The client needs only to detect the screen reader and call this method appropriately. For example, on Windows the client can handle WM_GETOBJECT with OBJID_CLIENT to detect accessibility readers. For windowless browsers accessibility will be enabled in TreeOnly mode (which corresponds to kAccessibilityModeWebContentsOnly in Chromium). In this mode renderer accessibility is enabled, the full tree is computed, and events are passed to IAccessibiltyHandler, but platform accessibility objects are not created. The client may implement platform accessibility objects using IAccessibiltyHandler callbacks if desired.

Public method

SetAudioMuted

Set whether the browser's audio is muted.

Public method

SetAutoResizeEnabled

Enable notifications of auto resize via IDisplayHandler.OnAutoResize. Notifications are disabled by default.

Public method

SetFocus

Set whether the browser is focused. (Used for Normal Rendering e.g. WinForms)

Public method

SetZoomLevel

Change the zoom level to the specified value. Specify 0.0 to reset the zoom level. If called on the CEF UI thread the change will be applied immediately. Otherwise, the change will be applied asynchronously on the UI thread.

Public method

ShowDevTools

Open developer tools in its own window. If inspectElementAtX and/or inspectElementAtY are specified then the element at the specified (x,y) location will be inspected.

Public method

StartDownload

Public method

StopFinding

Cancel all searches that are currently going on.

Public method

TryCloseBrowser

Helper for closing a browser. Call this method from the top-level window close handler. Internally this calls CloseBrowser(false) if the close has not yet been initiated. This method returns false while the close is pending and true after the close has completed. See CloseBrowser(Boolean) and DoClose(IWebBrowser, IBrowser) documentation for additional usage information. This method must be called on the CEF UI thread.

Public method

WasHidden

Notify the browser that it has been hidden or shown. Layouting and rendering notification will stop when the browser is hidden. This method is only used when window rendering is disabled (WPF/OffScreen).

Public method

WasResized

Notify the browser that the widget has been resized. The browser will first call CefRenderHandler::GetViewRect to get the new size and then call CefRenderHandler::OnPaint asynchronously with the updated regions. This method is only used when window rendering is disabled.