12 writes to Schemes
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (7)
AuthenticationTests.cs (3)
382options.Authentication.Schemes = authType; 411options.Authentication.Schemes = authType; 438options.Authentication.Schemes = authType;
Listener\AuthenticationOnExistingQueueTests.cs (2)
198server.Options.Authentication.Schemes = authType; 210options.Authentication.Schemes = authScheme;
Utilities.cs (2)
67options.Authentication.Schemes = authType; 76options.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;
TlsFeaturesObserve (1)
Program.cs (1)
23options.Authentication.Schemes = AuthenticationSchemes.None;
4 references to Schemes
Microsoft.AspNetCore.Server.HttpSys (4)
HttpSysListener.cs (1)
284AuthenticationManager.GenerateChallenges(Options.Authentication.Schemes));
MessagePump.cs (1)
40if (_options.Authentication.Schemes != AuthenticationSchemes.None)
RequestProcessing\Response.cs (1)
55_authChallenges = RequestContext.Server.Options.Authentication.Schemes;
WebHostBuilderHttpSysExtensions.cs (1)
45IsEnabled = options.Authentication.Schemes != AuthenticationSchemes.None,