Exemplo n.º 1
0
 public void Dispose()
 {
     this.ptr = null;
 }
 /// <summary>
 /// Called to retrieve proxy information for the specified |url|.
 /// </summary>
 private void get_proxy_for_url(cef_proxy_handler_t *self, /*const*/ cef_string_t *url, cef_proxy_info_t *proxy_info)
 {
     ThrowIfObjectDisposed();
     // TODO: CefProxyHandler.get_proxy_for_url
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 private CefProxyInfo(cef_proxy_info_t* ptr)
 {
     this.ptr = ptr;
 }
Exemplo n.º 4
0
 public void Dispose()
 {
     this.ptr = null;
 }
Exemplo n.º 5
0
 private CefProxyInfo(cef_proxy_info_t *ptr)
 {
     this.ptr = ptr;
 }
Exemplo n.º 6
0
 internal static CefProxyInfo From(cef_proxy_info_t *ptr)
 {
     return(new CefProxyInfo(ptr));
 }
Exemplo n.º 7
0
        /// <summary>
        /// Called to retrieve proxy information for the specified |url|.
        /// </summary>
        private void get_proxy_for_url(cef_proxy_handler_t *self, /*const*/ cef_string_t *url, cef_proxy_info_t *proxy_info)
        {
            ThrowIfObjectDisposed();
            string       m_url  = cef_string_t.ToString(url);
            CefProxyInfo m_info = CefProxyInfo.From(proxy_info);

            GetProxyForUrl(m_url, m_info);
        }