Marking classes as moved

This commit is contained in:
Elitsa Marinovska
2020-04-21 09:25:15 +02:00
parent 77a06efa91
commit 65b45eb48d
4 changed files with 4 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ using System.Web.Mvc;
namespace Umbraco.Web.Mvc
{
/// Migrated already to .Net Core
public class ActionExecutedEventArgs : EventArgs
{
public Controller Controller { get; set; }

View File

@@ -3,6 +3,7 @@
/// <summary>
/// constants
/// </summary>
/// Migrated already to .Net Core
internal static class Constants
{
internal const string ViewLocation = "~/Views";

View File

@@ -19,6 +19,7 @@ namespace Umbraco.Web.Mvc
/// this DataToken exists before the action executes in case the developer resolves an RTE value that contains
/// a partial view macro form.
/// </remarks>
/// Migrated already to .Net Core
internal class EnsurePartialViewMacroViewContextFilterAttribute : ActionFilterAttribute
{
/// <summary>

View File

@@ -5,6 +5,7 @@ namespace Umbraco.Web.Mvc
/// <summary>
/// A marker interface to designate that a controller will be used for Umbraco front-end requests and/or route hijacking
/// </summary>
/// Migrated already to .Net Core
public interface IRenderController : IController
{