HttpProxyCredentialType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the valid credential types for HTTP proxy authentication.
public enum class HttpProxyCredentialType
public enum HttpProxyCredentialType
type HttpProxyCredentialType =
Public Enum HttpProxyCredentialType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | Specifies anonymous authentication. |
Basic | 1 | Specifies basic authentication. For more information, see RFC 2617 - HTTP Authentication: Basic and Digest Authentication. |
Digest | 2 | Specifies digest authentication. For more information, see RFC 2617 - HTTP Authentication: Basic and Digest Authentication. |
Ntlm | 3 | Specifies NTLM authentication. |
Windows | 4 | Specifies Windows authentication. |
Remarks
This enumeration is used by ProxyCredentialType to specify the type of client credential to be used for authentication against the proxy.