Click or drag to resize

CefV8ValueExecuteFunction Method

Execute the function using the current V8 context. This method should only be called from within the scope of a CefV8Handler or CefV8Accessor callback, or in combination with calling Enter() and Exit() on a stored CefV8Context reference. |object| is the receiver ('this' object) of the function. If |object| is empty the current context's global object will be used. |arguments| is the list of arguments that will be passed to the function. Returns the function return value on success. Returns NULL if this method is called incorrectly or an exception is thrown.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public CefV8Value ExecuteFunction(
	CefV8Value obj,
	CefV8Value[] arguments
)

Parameters

obj
Type: Internal.Xilium.CefGlueCefV8Value
arguments
Type: Internal.Xilium.CefGlueCefV8Value

Return Value

Type: CefV8Value
See Also