Migrating ActionResults and a dependency class

This commit is contained in:
Elitsa Marinovska
2020-04-28 16:00:29 +02:00
parent 0b055cee4b
commit 652da168db
5 changed files with 469 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System;
using Umbraco.Web.Routing;
namespace Umbraco.Web.Website
{
/// <summary>
/// Represents the data required to route to a specific controller/action during an Umbraco request
/// </summary>
public class RouteDefinition
{
public string ControllerName { get; set; }
public string ActionName { get; set; }
/// <summary>
/// The Controller type found for routing to
/// </summary>
public Type ControllerType { get; set; }
/// <summary>
/// Everything related to the current content request including the requested content
/// </summary>
public IPublishedRequest PublishedRequest { get; set; }
/// <summary>
/// Gets/sets whether the current request has a hijacked route/user controller routed for it
/// </summary>
public bool HasHijackedRoute { get; set; }
}
}