XHR_AUTH enumeration (msxml6.h)

Specifies whether to allow authentication to be used to connect to a proxy or to connect to the HTTP server.

Syntax

typedef enum _XHR_AUTH {
  XHR_AUTH_ALL = 0,
  XHR_AUTH_NONE = 0x1,
  XHR_AUTH_PROXY = 0x2
} XHR_AUTH;

Constants

 
XHR_AUTH_ALL
Value: 0
Allow authentication to both proxy and server.
XHR_AUTH_NONE
Value: 0x1
Disable authentication to both the proxy and server.
XHR_AUTH_PROXY
Value: 0x2
Enable authentication to the proxy and disable auth to the server.

Requirements

Requirement Value
Minimum supported client Windows 8.1 [desktop apps only]
Minimum supported server Windows Server 2012 R2 [desktop apps only]
Header msxml6.h

See also

SetProperty