/// <summary> /// Enter this context. A context must be explicitly entered before creating a /// V8 Object, Array, Function or Date asynchronously. exit() must be called /// the same number of times as enter() before releasing this context. V8 /// objects belong to the context in which they are created. Returns true (1) /// if the scope was entered successfully. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_v8_capi.h">cef/include/capi/cef_v8_capi.h</see>. /// </remarks> public bool Enter() { var call = new CfxV8ContextEnterRenderProcessCall(); call.@this = proxyId; call.RequestExecution(this); return(call.__retval); }
/// <summary> /// Enter this context. A context must be explicitly entered before creating a /// V8 Object, Array, Function or Date asynchronously. exit() must be called /// the same number of times as enter() before releasing this context. V8 /// objects belong to the context in which they are created. Returns true (1) /// if the scope was entered successfully. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_v8_capi.h">cef/include/capi/cef_v8_capi.h</see>. /// </remarks> public bool Enter() { var call = new CfxV8ContextEnterRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.RequestExecution(this); return(call.__retval); }
/// <summary> /// Enter this context. A context must be explicitly entered before creating a /// V8 Object, Array, Function or Date asynchronously. exit() must be called /// the same number of times as enter() before releasing this context. V8 /// objects belong to the context in which they are created. Returns true (1) /// if the scope was entered successfully. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_v8_capi.h">cef/include/capi/cef_v8_capi.h</see>. /// </remarks> public bool Enter() { var call = new CfxV8ContextEnterRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.RequestExecution(this); return call.__retval; }