XHR_CRED_PROMPT enumeration (msxml6.h)

Specifies whether to allow credential prompts to the user for authentication.

Syntax

typedef enum _XHR_CRED_PROMPT {
  XHR_CRED_PROMPT_ALL = 0,
  XHR_CRED_PROMPT_NONE = 0x1,
  XHR_CRED_PROMPT_PROXY = 0x2
} XHR_CRED_PROMPT;

Constants

 
XHR_CRED_PROMPT_ALL
Value: 0
Allow all credential prompts for authentication.

This setting allows credential prompts in response to requests from the proxy or the server.
XHR_CRED_PROMPT_NONE
Value: 0x1
Disable all credential prompts for authentication. This setting disables any credential prompts in response to requests from the proxy or the server.
XHR_CRED_PROMPT_PROXY
Value: 0x2
Allow credential prompts for authentication only in response to requests from the proxy.

This setting disables any credential prompts in response to requests from the server.

Requirements

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

See also

SetProperty