HttpNotFoundResult Class

Defines an object that is used to indicate that the requested resource was not found.

Inheritance Hierarchy

System.Object
  System.Web.Mvc.ActionResult
    System.Web.Mvc.HttpStatusCodeResult
      System.Web.Mvc.HttpNotFoundResult

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Public Class HttpNotFoundResult _
    Inherits HttpStatusCodeResult
'Usage
Dim instance As HttpNotFoundResult
public class HttpNotFoundResult : HttpStatusCodeResult
public ref class HttpNotFoundResult : public HttpStatusCodeResult
public class HttpNotFoundResult extends HttpStatusCodeResult

The HttpNotFoundResult type exposes the following members.

Constructors

  Name Description
Public method HttpNotFoundResult() Initializes a new instance of the HttpNotFoundResult class.
Public method HttpNotFoundResult(String) Initializes a new instance of the HttpNotFoundResult class using a status description.

Top

Properties

  Name Description
Public property StatusCode Gets the HTTP status code. (Inherited from HttpStatusCodeResult.)
Public property StatusDescription Gets the HTTP status description. (Inherited from HttpStatusCodeResult.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Public method ExecuteResult Enables processing of the result of an action method by a custom type that inherits from the ActionResult class. (Inherited from HttpStatusCodeResult.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Remarks

A Visual Studio project with source code is available to accompany this topic: Download.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Mvc Namespace