10 writes to Schemes
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (6)
AuthenticationTests.cs (3)
382
options.Authentication.
Schemes
= authType;
411
options.Authentication.
Schemes
= authType;
438
options.Authentication.
Schemes
= authType;
Listener\AuthenticationOnExistingQueueTests.cs (1)
210
options.Authentication.
Schemes
= authScheme;
Utilities.cs (2)
66
options.Authentication.
Schemes
= authType;
75
options.Authentication.
Schemes
= authType;
NegotiateAuthSample (1)
Program.cs (1)
24
options.Authentication.
Schemes
= AuthenticationSchemes.Negotiate;
SelfHostServer (2)
Program.cs (1)
27
options.Authentication.
Schemes
= AuthenticationSchemes.None;
Startup.cs (1)
21
options.Authentication.
Schemes
= AuthenticationSchemes.None;
ServerComparison.TestSites (1)
Program.cs (1)
44
options.Authentication.
Schemes
= AuthenticationSchemes.Negotiate | AuthenticationSchemes.NTLM;
4 references to Schemes
Microsoft.AspNetCore.Server.HttpSys (4)
HttpSysListener.cs (1)
293
AuthenticationManager.GenerateChallenges(Options.Authentication.
Schemes
));
MessagePump.cs (1)
38
if (_options.Authentication.
Schemes
!= AuthenticationSchemes.None)
RequestProcessing\Response.cs (1)
54
_authChallenges = RequestContext.Server.Options.Authentication.
Schemes
;
WebHostBuilderHttpSysExtensions.cs (1)
43
IsEnabled = options.Authentication.
Schemes
!= AuthenticationSchemes.None,