Uses of Class
com.jniwrapper.win32.ie.proxy.ProxyConfiguration

Packages that use ProxyConfiguration
com.jniwrapper.win32.ie Contains the basic classes and interfaces. 
com.jniwrapper.win32.ie.proxy Contains classes that allows managing browser proxy settings. 
 

Uses of ProxyConfiguration in com.jniwrapper.win32.ie
 

Methods in com.jniwrapper.win32.ie that return ProxyConfiguration
 ProxyConfiguration WebBrowser.getProxy()
          Returns the proxy settings for the current WebBrowser control and all its children.
 ProxyConfiguration IEAutomation.getProxy()
          This methd always throw UnsupportedOperationException error because the IEAutomation implementation doesn't support this functionality yet.
 ProxyConfiguration HeadlessBrowser.getProxy()
          Returns the proxy settings for the current WebBrowser control.
 ProxyConfiguration FrameBrowserSupport.getProxy()
          This methd always throw UnsupportedOperationException error because the FrameBrowserSupport implementation doesn't support this functionality yet.
static ProxyConfiguration Browsers.getProxy()
          Returns the system local area network (LAN) proxy settings.
 ProxyConfiguration Browser.getProxy()
           
 

Methods in com.jniwrapper.win32.ie with parameters of type ProxyConfiguration
 void WebBrowser.setProxy(ProxyConfiguration conf)
          Sets the specified proxy settings for the current WebBrowser control and all its children.
 void IEAutomation.setProxy(ProxyConfiguration conf)
          This methd always throw UnsupportedOperationException error because the IEAutomation implementation doesn't support this functionality yet.
 void HeadlessBrowser.setProxy(ProxyConfiguration conf)
          Sets the specified proxy settings for the current WebBrowser control and all its children.
 void FrameBrowserSupport.setProxy(ProxyConfiguration conf)
          This methd always throw UnsupportedOperationException error because the FrameBrowserSupport implementation doesn't support this functionality yet.
static void Browsers.setProxy(ProxyConfiguration conf)
          Updates the system local area network (LAN) proxy settings to the specified proxy server configuration.
 void Browser.setProxy(ProxyConfiguration conf)
           
 

Uses of ProxyConfiguration in com.jniwrapper.win32.ie.proxy
 

Methods in com.jniwrapper.win32.ie.proxy that return ProxyConfiguration
 ProxyConfiguration ProxyManager.getProxyConfiguration(int type)
          Deprecated. use the Browsers.getProxy() method instead of the getProxyConfiguration(ProxyConfiguration.Type.GLOBAL) and the WebBrowser.getProxy() method instead of the getProxyConfiguration(ProxyConfiguration.Type.PROCESS).
 

Methods in com.jniwrapper.win32.ie.proxy with parameters of type ProxyConfiguration
 void ProxyManager.updateProxyConfiguration(ProxyConfiguration configuration, int type)
          Deprecated. use the Browsers.setProxy(ProxyConfiguration) method instead of the updateProxyConfiguration(conf, ProxyConfiguration.Type.GLOBAL) and the WebBrowser.setProxy(ProxyConfiguration) method instead of the updateProxyConfiguration(conf, ProxyConfiguration.Type.PROCESS).