Files
Umbraco-CMS/umbraco/interfaces/INotFoundHandler.cs

15 lines
256 B
C#
Raw Normal View History

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