17 references to AuthenticationSchemes
Microsoft.AspNetCore.Server.HttpSys (17)
AuthenticationManager.cs (13)
26private AuthenticationSchemes _authSchemes; 36public AuthenticationSchemes Schemes 103if (_authSchemes != AuthenticationSchemes.None) 143internal static IList<string> GenerateChallenges(AuthenticationSchemes authSchemes) 145if (authSchemes == AuthenticationSchemes.None) 153if ((authSchemes & AuthenticationSchemes.Kerberos) == AuthenticationSchemes.Kerberos) 157if ((authSchemes & AuthenticationSchemes.Negotiate) == AuthenticationSchemes.Negotiate) 161if ((authSchemes & AuthenticationSchemes.NTLM) == AuthenticationSchemes.NTLM) 171if ((authSchemes & AuthenticationSchemes.Basic) == AuthenticationSchemes.Basic)
MessagePump.cs (1)
46if (_options.Authentication.Schemes != AuthenticationSchemes.None)
RequestProcessing\Response.cs (2)
29private AuthenticationSchemes _authChallenges; 123public AuthenticationSchemes AuthenticationChallenges
WebHostBuilderHttpSysExtensions.cs (1)
45IsEnabled = options.Authentication.Schemes != AuthenticationSchemes.None,