Click or drag to resize

CefBrowser Class

Class used to represent a browser window. When used in the browser process the methods of this class may be called on any thread unless otherwise indicated in the comments. When used in the render process the methods of this class may only be called on the main thread.
Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefBrowser

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefBrowser : IDisposable

The CefBrowser type exposes the following members.

Properties
 NameDescription
Public propertyCanGoBack Returns true if the browser can navigate backwards.
Public propertyCanGoForward Returns true if the browser can navigate forwards.
Public propertyFrameCount Returns the number of frames that currently exist.
Public propertyHasDocument Returns true if a document has been loaded in the browser.
Public propertyIdentifier Returns the globally unique identifier for this browser.
Public propertyIsLoading Returns true if the browser is currently loading.
Public propertyIsPopup Returns true if the window is a popup window.
Top
Methods
 NameDescription
Public methodDisposeReleases all resources used by the CefBrowser
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalize
(Overrides ObjectFinalize)
Public methodGetFocusedFrame Returns the focused frame for the browser window.
Public methodGetFrame(Int64) Returns the frame with the specified identifier, or NULL if not found.
Public methodGetFrame(String) Returns the frame with the specified name, or NULL if not found.
Public methodGetFrameIdentifiers Returns the identifiers of all existing frames.
Public methodGetFrameNames Returns the names of all existing frames.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetHost Returns the browser host object. This method can only be called in the browser process.
Public methodGetMainFrame Returns the main (top-level) frame for the browser window.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodGoBack Navigate backwards.
Public methodGoForward Navigate forwards.
Public methodIsSame Returns true if this object is pointing to the same handle as |that| object.
Public methodReload Reload the current page.
Public methodReloadIgnoreCache Reload the current page ignoring any cached data.
Public methodSendProcessMessage Send a message to the specified |target_process|. Returns true if the message was sent successfully.
Public methodStopLoad Stop loading the page.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also