/// <summary> /// Returns the entered (bottom) context object in the V8 context stack. /// </summary> public static CefV8Context GetEnteredContext() { return(CefV8Context.Wrap(CefV8Context.Create, CefNativeApi.cef_v8context_get_entered_context())); }
/// <summary> /// Returns the current (top) context object in the V8 context stack. /// </summary> public static CefV8Context GetCurrentContext() { return(CefV8Context.Wrap(CefV8Context.Create, CefNativeApi.cef_v8context_get_current_context())); }