18 references to Request
Aspire.Hosting (1)
Dashboard\DashboardServiceAuth.cs (1)
41
if (!
Request
.Headers.TryGetValue(ApiKeyHeaderName, out var headerValues))
Microsoft.AspNetCore.Authentication (11)
AuthenticationHandler.cs (9)
54
protected PathString OriginalPath => Context.Features.Get<IAuthenticationFeature>()?.OriginalPath ??
Request
.Path;
59
protected PathString OriginalPathBase => Context.Features.Get<IAuthenticationFeature>()?.OriginalPathBase ??
Request
.PathBase;
106
get =>
Request
.Scheme + Uri.SchemeDelimiter +
Request
.Host +
Request
.PathBase +
Request
.Path +
Request
.QueryString;
197
=>
Request
.Scheme + Uri.SchemeDelimiter +
Request
.Host + OriginalPathBase + targetPath;
RemoteAuthenticationHandler.cs (2)
69
=> Task.FromResult(Options.CallbackPath ==
Request
.Path);
262
var correlationCookie =
Request
.Cookies[cookieName];
Microsoft.AspNetCore.Authentication.BearerToken (1)
BearerTokenHandler.cs (1)
96
var authorization =
Request
.Headers.Authorization.ToString();
Microsoft.AspNetCore.Authentication.Cookies (3)
CookieAuthenticationHandler.cs (3)
433
redirectUri =
Request
.Query[Options.ReturnUrlParameter];
467
returnUrl = OriginalPathBase + OriginalPath +
Request
.QueryString;
480
redirectUri = OriginalPathBase + OriginalPath +
Request
.QueryString;
Microsoft.AspNetCore.Authentication.OAuth (2)
OAuthHandler.cs (2)
66
var query =
Request
.Query;
267
properties.RedirectUri = OriginalPathBase + OriginalPath +
Request
.QueryString;