/// <summary> /// Returns true if this object is sharing the same storage as |that| object. /// </summary> public bool IsSharingWith(CefRequestContext other) { return(cef_request_context_t.is_sharing_with(_self, other.ToNative()) != 0); }
/// <summary> /// Returns the global context object. /// </summary> public static CefRequestContext GetGlobalContext() { return(CefRequestContext.FromNative( cef_request_context_t.get_global_context() )); }