| File: Filters\ResourceExecutedContext.cs | Web Access |
| Project: src\aspnetcore\src\Mvc\Mvc.Abstractions\src\Microsoft.AspNetCore.Mvc.Abstractions.csproj (Microsoft.AspNetCore.Mvc.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Runtime.ExceptionServices; namespace Microsoft.AspNetCore.Mvc.Filters; /// <summary> /// A context for resource filters, specifically <see cref="IResourceFilter.OnResourceExecuted"/> calls. /// </summary> public class ResourceExecutedContext : FilterContext { private Exception? _exception; private ExceptionDispatchInfo? _exceptionDispatchInfo; /// <summary> /// Creates a new <see cref="ResourceExecutedContext"/>. /// </summary> /// <param name="actionContext">The <see cref="ActionContext"/>.</param> /// <param name="filters">The list of <see cref="IFilterMetadata"/> instances.</param> public ResourceExecutedContext(ActionContext actionContext, IList<IFilterMetadata> filters) : base(actionContext, filters) { } /// <summary> /// Gets or sets a value which indicates whether or not execution was canceled by a resource filter. /// If true, then a resource filter short-circuited execution by setting /// <see cref="ResourceExecutingContext.Result"/>. /// </summary> public virtual bool Canceled { get; set; } /// <summary> /// Gets or set the current <see cref="Exception"/>. /// </summary> /// <remarks> /// <para> /// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat /// the exception as handled, and it will not be rethrown by the runtime. /// </para> /// <para> /// Setting <see cref="ExceptionHandled"/> to <c>true</c> will also mark the exception as handled. /// </para> /// </remarks> public virtual Exception? Exception { get { if (_exception == null && _exceptionDispatchInfo != null) { return _exceptionDispatchInfo.SourceException; } else { return _exception; } } set { _exceptionDispatchInfo = null; _exception = value; } } /// <summary> /// Gets or set the current <see cref="Exception"/>. /// </summary> /// <remarks> /// <para> /// Setting <see cref="Exception"/> or <see cref="ExceptionDispatchInfo"/> to <c>null</c> will treat /// the exception as handled, and it will not be rethrown by the runtime. /// </para> /// <para> /// Setting <see cref="ExceptionHandled"/> to <c>true</c> will also mark the exception as handled. /// </para> /// </remarks> public virtual ExceptionDispatchInfo? ExceptionDispatchInfo { get { return _exceptionDispatchInfo; } set { _exception = null; _exceptionDispatchInfo = value; } } /// <summary> /// <para> /// Gets or sets a value indicating whether or not the current <see cref="Exception"/> has been handled. /// </para> /// <para> /// If <c>false</c> the <see cref="Exception"/> will be rethrown by the runtime after resource filters /// have executed. /// </para> /// </summary> public virtual bool ExceptionHandled { get; set; } /// <summary> /// Gets or sets the result. /// </summary> /// <remarks> /// <para> /// The <see cref="Result"/> may be provided by execution of the action itself or by another /// filter. /// </para> /// <para> /// The <see cref="Result"/> has already been written to the response before being made available /// to resource filters. /// </para> /// </remarks> public virtual IActionResult? Result { get; set; } }