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