private void on_request_context_initialized(cef_request_context_handler_t *self, cef_request_context_t *request_context)
        {
            CheckSelf(self);

            var mRequestContext = CefRequestContext.FromNative(request_context);

            OnRequestContextInitialized(mRequestContext);
        }
Esempio n. 2
0
 /// <summary>
 /// Creates a new context object with the specified handler.
 /// </summary>
 public static CefRequestContext CreateContext(CefRequestContextHandler handler)
 {
     return CefRequestContext.FromNative(
         cef_request_context_t.create_context(
             handler != null ? handler.ToNative() : null
             )
         );
 }
 /// <summary>
 /// Creates a new context object with the specified handler.
 /// </summary>
 public static CefRequestContext CreateContext(CefRequestContextSettings settings, CefRequestContextHandler handler)
 {
     return(CefRequestContext.FromNative(
                cef_request_context_t.create_context(
                    settings != null ? settings.ToNative() : null,
                    handler != null ? handler.ToNative() : null
                    )
                ));
 }
Esempio n. 4
0
        /// <summary>
        /// Creates a new context object with the specified |settings| and optional
        /// |handler|.
        /// </summary>
        public static CefRequestContext CreateContext(CefRequestContextSettings settings, CefRequestContextHandler handler)
        {
            var n_settings = settings.ToNative();

            var result = CefRequestContext.FromNative(
                cef_request_context_t.create_context(
                    n_settings,
                    handler != null ? handler.ToNative() : null
                    )
                );

            CefRequestContextSettings.Free(n_settings);

            return(result);
        }
Esempio n. 5
0
 /// <summary>
 /// Returns the request context for this browser.
 /// </summary>
 public CefRequestContext GetRequestContext()
 {
     return(CefRequestContext.FromNative(
                cef_browser_host_t.get_request_context(_self)
                ));
 }
Esempio n. 6
0
 /// <summary>
 /// Returns the global context object.
 /// </summary>
 public static CefRequestContext GetGlobalContext()
 {
     return(CefRequestContext.FromNative(
                cef_request_context_t.get_global_context()
                ));
 }