CefV8Value ExecuteFunction Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

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: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

public CefV8Value ExecuteFunction(
	CefV8Value obj,
	CefV8Value[] arguments
)

Parameters

obj
Type: Xilium.CefGlue CefV8Value

[Missing <param name="obj"/> documentation for "M:Xilium.CefGlue.CefV8Value.ExecuteFunction(Xilium.CefGlue.CefV8Value,Xilium.CefGlue.CefV8Value[])"]

arguments
Type:  Xilium.CefGlue CefV8Value 

[Missing <param name="arguments"/> documentation for "M:Xilium.CefGlue.CefV8Value.ExecuteFunction(Xilium.CefGlue.CefV8Value,Xilium.CefGlue.CefV8Value[])"]

Return Value

Type: CefV8Value

[Missing <returns> documentation for "M:Xilium.CefGlue.CefV8Value.ExecuteFunction(Xilium.CefGlue.CefV8Value,Xilium.CefGlue.CefV8Value[])"]

See Also