Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.Net.AuthenticationSchemes

Assembly: System.Net.Primitives

Specifies protocols for authentication.

Values

None
No authentication is allowed. A client requesting an <see cref="T:System.Net.HttpListener" /> object with this flag set will always receive a 403 Forbidden status. Use this flag when a resource should never be served to a client.
Digest
Specifies digest authentication.
Negotiate
Negotiates with the client to determine the authentication scheme. If both client and server support Kerberos, it is used; otherwise, NTLM is used.
Ntlm
Specifies NTLM authentication.
IntegratedWindowsAuthentication
Specifies Windows authentication.
Basic
Specifies basic authentication.
Anonymous
Specifies anonymous authentication.