17 lines
316 B
C#
17 lines
316 B
C#
using System.Web;
|
|
|
|
namespace Umbraco.Web.Mvc
|
|
{
|
|
public class NotFoundHandler : IHttpHandler
|
|
{
|
|
public void ProcessRequest(HttpContext context)
|
|
{
|
|
context.Response.StatusCode = 404;
|
|
}
|
|
|
|
public bool IsReusable
|
|
{
|
|
get { return true; }
|
|
}
|
|
}
|
|
} |