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