Marking asp.net action filters as migrated to net core

This commit is contained in:
Elitsa Marinovska
2020-04-20 22:56:36 +02:00
parent 487e3c54a8
commit d483f2ccbd
3 changed files with 3 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ namespace Umbraco.Web.Mvc
/// <remarks>
/// Only minifies in release mode
/// </remarks>
/// Migrated already to .Net Core
public class MinifyJavaScriptResultAttribute : ActionFilterAttribute
{
private readonly IHostingEnvironment _hostingEnvironment;

View File

@@ -3,6 +3,7 @@ using System.Web.Mvc;
namespace Umbraco.Web.Mvc
{
/// Migrated already to .Net Core
public class PreRenderViewActionFilterAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)

View File

@@ -8,6 +8,7 @@ namespace Umbraco.Web.Mvc
/// <summary>
/// Forces the response to have a specific http status code
/// </summary>
/// Migrated already to .Net Core
internal class StatusCodeResultAttribute : ActionFilterAttribute
{
private readonly HttpStatusCode _statusCode;