5 implementations of Authorization
Microsoft.AspNetCore.Server.HttpSys (1)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\RequestHeaders.Generated.cs (1)
182public StringValues Authorization
Microsoft.AspNetCore.Server.IIS (1)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\RequestHeaders.Generated.cs (1)
182public StringValues Authorization
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpHeaders.Generated.cs (3)
848StringValues IHeaderDictionary.Authorization 10029StringValues IHeaderDictionary.Authorization 15906StringValues IHeaderDictionary.Authorization
6 references to Authorization
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
96var authorization = Request.Headers.Authorization.ToString();
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerHandler.cs (1)
76string authorization = Request.Headers.Authorization.ToString();
Microsoft.AspNetCore.Authentication.Negotiate (1)
NegotiateHandler.cs (1)
97var authorizationHeader = Request.Headers.Authorization;
Microsoft.AspNetCore.OutputCaching (1)
Policies\DefaultPolicy.cs (1)
82if (!StringValues.IsNullOrEmpty(request.Headers.Authorization) || request.HttpContext.User?.Identity?.IsAuthenticated == true)
Microsoft.AspNetCore.ResponseCaching (1)
ResponseCachingPolicyProvider.cs (1)
24if (!StringValues.IsNullOrEmpty(request.Headers.Authorization))
Microsoft.DotNet.HotReload.Watch (1)
src\sdk\src\Dotnet.Watch\AspireService\AspireServerService.cs (1)
310var authHeader = context.Request.Headers.Authorization;