File: AuthenticationFeature.cs
Web Access
Project: src\src\Http\Authentication.Core\src\Microsoft.AspNetCore.Authentication.Core.csproj (Microsoft.AspNetCore.Authentication.Core)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Http;
 
namespace Microsoft.AspNetCore.Authentication;
 
/// <summary>
/// Used to capture path info so redirects can be computed properly within an app.Map().
/// </summary>
public class AuthenticationFeature : IAuthenticationFeature
{
    /// <summary>
    /// The original path base.
    /// </summary>
    public PathString OriginalPathBase { get; set; }
 
    /// <summary>
    /// The original path.
    /// </summary>
    public PathString OriginalPath { get; set; }
}