You've already forked linux-packaging-mono
21 lines
524 B
C#
21 lines
524 B
C#
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|
|||
|
|
using System.Net;
|
|||
|
|
|
|||
|
|
namespace System.Web.Mvc
|
|||
|
|
{
|
|||
|
|
public class HttpNotFoundResult : HttpStatusCodeResult
|
|||
|
|
{
|
|||
|
|
public HttpNotFoundResult()
|
|||
|
|
: this(null)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// NotFound is equivalent to HTTP status 404.
|
|||
|
|
public HttpNotFoundResult(string statusDescription)
|
|||
|
|
: base(HttpStatusCode.NotFound, statusDescription)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|