Files
Umbraco-CMS/src/umbraco.interfaces/INotFoundHandler.cs
2012-06-22 20:39:48 +04: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;}
}
}