11 references to HttpSysDefaults
Microsoft.AspNetCore.Server.HttpSys (2)
MessagePump.cs (1)
40authentication.AddScheme(new AuthenticationScheme(HttpSysDefaults.AuthenticationScheme, displayName: _options.Authentication.AuthenticationDisplayName, handlerType: typeof(AuthenticationHandler)));
WebHostBuilderHttpSysExtensions.cs (1)
44AuthenticationScheme = HttpSysDefaults.AuthenticationScheme,
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (9)
AuthenticationTests.cs (9)
208var authResults = await httpContext.AuthenticateAsync(HttpSysDefaults.AuthenticationScheme); 232var authResults = await httpContext.AuthenticateAsync(HttpSysDefaults.AuthenticationScheme); 255return httpContext.ChallengeAsync(HttpSysDefaults.AuthenticationScheme); 278await httpContext.ChallengeAsync(HttpSysDefaults.AuthenticationScheme); 296return httpContext.ChallengeAsync(HttpSysDefaults.AuthenticationScheme); 322return httpContext.ChallengeAsync(HttpSysDefaults.AuthenticationScheme); 340return httpContext.ForbidAsync(HttpSysDefaults.AuthenticationScheme); 361return httpContext.ChallengeAsync(HttpSysDefaults.AuthenticationScheme, null); 391var authenticateResult = await httpContext.AuthenticateAsync(HttpSysDefaults.AuthenticationScheme);