Click or drag to resize

CefRenderProcessHandlerOnContextCreated Method

Called immediately after the V8 context for a frame has been created. To retrieve the JavaScript 'window' object use the CefV8Context::GetGlobal() method. V8 handles can only be accessed from the thread on which they are created. A task runner for posting tasks on the associated thread can be retrieved via the CefV8Context::GetTaskRunner() method.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual void OnContextCreated(
	CefBrowser browser,
	CefFrame frame,
	CefV8Context context
)

Parameters

browser  CefBrowser
 
frame  CefFrame
 
context  CefV8Context
 
See Also