// 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;
using Microsoft.AspNetCore.Routing;
namespace Microsoft.AspNetCore.Diagnostics;
/// <summary>
/// A feature containing the path and error of the original request for examination by an exception handler.
/// </summary>
public class ExceptionHandlerFeature : IExceptionHandlerPathFeature
{
/// <inheritdoc/>
public Exception Error { get; set; } = default!;
/// <inheritdoc/>
public string Path { get; set; } = default!;
/// <inheritdoc/>
public Endpoint? Endpoint { get; set; }
/// <inheritdoc/>
public RouteValueDictionary? RouteValues { get; set; }
}
|