1 implementation of OriginalPathBase
Microsoft.AspNetCore.Authentication.Core (1)
AuthenticationFeature.cs (1)
16
public PathString
OriginalPathBase
{ get; set; }
2 references to OriginalPathBase
Microsoft.AspNetCore.Authentication (2)
AuthenticationHandler.cs (1)
59
protected PathString OriginalPathBase => Context.Features.Get<IAuthenticationFeature>()?.
OriginalPathBase
?? Request.PathBase;
RequestPathBaseCookieBuilder.cs (1)
28
var originalPathBase = context.Features.Get<IAuthenticationFeature>()?.
OriginalPathBase
?? context.Request.PathBase;