UpdateEndpointProxySettings structure
The UpdateEndpointProxySettings structure defines the proxy settings used when requesting a token.
Syntax
typedef struct tagUpdateEndpointProxySettings {
BSTR szProxyAddr;
BSTR szBypassList;
BSTR szUserName;
BSTR szPassword;
} UpdateEndpointProxySettings;
Members
-
szProxyAddr
-
The DNS name or IP address of the proxy server to use (for example, "proxy.somecorp.com" or "192.168.0.4"), or an empty string if no proxy should be used.
-
szBypassList
-
A list of host addresses that should bypass the proxy server, or an empty string if all host addresses should use the proxy server
WUA does not use this data if szProxyAddr is empty.
-
szUserName
-
The username that is used to authenticate with the proxy server, or the empty string if no authentication is needed.
WUA does not use this data if szProxyAddr is empty.
-
szPassword
-
The password that is used to authenticate with the proxy server, or the empty string if no authentication is needed.
WUA does not use this data if szProxyAddr is empty.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 8 [desktop apps only] |
Minimum supported server |
Windows Server 2012 [desktop apps only] |
Header |
|
IDL |
|
See also