6 references to IISServerDefaults
InProcessWebSite (3)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (3)
245await ctx.ChallengeAsync(IISServerDefaults.AuthenticationScheme); 251await ctx.ForbidAsync(IISServerDefaults.AuthenticationScheme); 262await ctx.ChallengeAsync(IISServerDefaults.AuthenticationScheme);
Microsoft.AspNetCore.Server.IIS (2)
Core\IISHttpServer.cs (1)
77authentication.AddScheme(new AuthenticationScheme(IISServerDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(IISServerAuthenticationHandlerInternal)));
WebHostBuilderIISExtensions.cs (1)
45AuthenticationScheme = IISServerDefaults.AuthenticationScheme
NativeIISSample (1)
Startup.cs (1)
58var scheme = await _authSchemeProvider.GetSchemeAsync(IISServerDefaults.AuthenticationScheme);