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