(default)
Class CefProxyInfo
traits::struct_type
|
+--CefStructBase
|
+--CefProxyInfo
in cef_types_wrappers.h
- class CefProxyInfo
- extends CefStructBase
Class representing the results of proxy resolution.
IsDirect
public bool IsDirect() const;
IsNamedProxy
public bool IsNamedProxy() const;
IsPacString
public bool IsPacString() const;
ProxyList
public CefString ProxyList() const;
UseDirect
public void UseDirect();
- Use a direction connection instead of a proxy.
UseNamedProxy
public void UseNamedProxy( const CefString& proxy_uri_list );
- Use one or more named proxy servers specified in WinHTTP format. Each proxy
server is of the form:
["://"][":"]
Multiple values may be separated by semicolons or whitespace. For example,
"foo1:80;foo2:80".
UsePacString
public void UsePacString( const CefString& pac_string );
- Use one or more named proxy servers specified in PAC script format. For
example, "PROXY foobar:99; SOCKS fml:2; DIRECT".
Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt