Files
Umbraco-CMS/src/umbraco.interfaces/INotFoundHandler.cs
2018-11-22 14:05:51 +00:00

15 lines
256 B
C#

using System;
namespace umbraco.interfaces
{
/// <summary>
/// Summary description for INotFoundHandler.
/// </summary>
public interface INotFoundHandler
{
bool Execute(string url);
bool CacheUrl {get;}
int redirectID {get;}
}
}