File: IExceptionHandlerPathFeature.cs
Web Access
Project: src\src\Middleware\Diagnostics.Abstractions\src\Microsoft.AspNetCore.Diagnostics.Abstractions.csproj (Microsoft.AspNetCore.Diagnostics.Abstractions)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Diagnostics;
 
/// <summary>
/// Represents an exception handler with the original path of the request.
/// </summary>
public interface IExceptionHandlerPathFeature : IExceptionHandlerFeature
{
    /// <summary>
    /// The portion of the request path that identifies the requested resource. The value
    /// is un-escaped.
    /// </summary>
    new string Path => ((IExceptionHandlerFeature)this).Path;
}