Files
Umbraco-CMS/src/Umbraco.Web/Routing/EnsureRoutableOutcome.cs

14 lines
326 B
C#

namespace Umbraco.Web.Routing
{
/// <summary>
/// Reasons a request was not routable on the front-end
/// </summary>
internal enum EnsureRoutableOutcome
{
IsRoutable = 0,
NotDocumentRequest = 10,
NotReady = 11,
NotConfigured = 12,
NoContent = 13
}
}