WINHTTP_CURRENT_USER_IE_PROXY_CONFIG structure (winhttp.h)

The WINHTTP_CURRENT_USER_IE_PROXY_CONFIG structure contains the Internet Explorer proxy configuration information.

Syntax

typedef struct _WINHTTP_CURRENT_USER_IE_PROXY_CONFIG {
  BOOL   fAutoDetect;
  LPWSTR lpszAutoConfigUrl;
  LPWSTR lpszProxy;
  LPWSTR lpszProxyBypass;
} WINHTTP_CURRENT_USER_IE_PROXY_CONFIG, *PWINHTTP_CURRENT_USER_IE_PROXY_CONFIG;

Members

fAutoDetect

If TRUE, indicates that the Internet Explorer proxy configuration for the current user specifies "automatically detect settings".

lpszAutoConfigUrl

Pointer to a null-terminated Unicode string that contains the auto-configuration URL if the Internet Explorer proxy configuration for the current user specifies "Use automatic proxy configuration".

lpszProxy

Pointer to a null-terminated Unicode string that contains the proxy URL if the Internet Explorer proxy configuration for the current user specifies "use a proxy server".

lpszProxyBypass

Pointer to a null-terminated Unicode string that contains the optional proxy by-pass server list.

Requirements

Requirement Value
Minimum supported client Windows XP, Windows 2000 Professional with SP3 [desktop apps only]
Minimum supported server Windows Server 2003, Windows 2000 Server with SP3 [desktop apps only]
Header winhttp.h

See also

WinHTTP Versions