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