9 references to AuthenticationScheme
IISSample (1)
Startup.cs (1)
62var scheme = await authSchemeProvider.GetSchemeAsync(IISDefaults.AuthenticationScheme);
InProcessWebSite (3)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (3)
1086return context.ChallengeAsync(IISDefaults.AuthenticationScheme); 1090public Task Forbidden(HttpContext context) => context.ForbidAsync(IISDefaults.AuthenticationScheme); 1100return context.ChallengeAsync(IISDefaults.AuthenticationScheme);
Microsoft.AspNetCore.Server.IISIntegration (3)
IISMiddleware.cs (2)
87authentication.AddScheme(new AuthenticationScheme(IISDefaults.AuthenticationScheme, _options.AuthenticationDisplayName, typeof(AuthenticationHandler))); 179var winIdentity = new WindowsIdentity(handle, IISDefaults.AuthenticationScheme);
WebHostBuilderIISExtensions.cs (1)
89AuthenticationScheme = IISDefaults.AuthenticationScheme
Microsoft.AspNetCore.Server.IISIntegration.Tests (2)
IISMiddlewareTests.cs (2)
409var windows = await auth.GetSchemeAsync(IISDefaults.AuthenticationScheme); 452var windowsAuth = await auth.GetSchemeAsync(IISDefaults.AuthenticationScheme);