This topic has not yet been rated - Rate this topic

HttpUnauthorizedResult Class

Represents the result of an unauthorized HTTP request.

System.Object
  System.Web.Mvc.ActionResult
    System.Web.Mvc.HttpStatusCodeResult
      System.Web.Mvc.HttpUnauthorizedResult

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)
public class HttpUnauthorizedResult : HttpStatusCodeResult

The HttpUnauthorizedResult type exposes the following members.

  Name Description
Public method HttpUnauthorizedResult() Initializes a new instance of the HttpUnauthorizedResult class.
Public method HttpUnauthorizedResult(String) Initializes a new instance of the HttpUnauthorizedResult class using the status description.
Top
  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
  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

HTTP 401 is the status code for unauthorized access. This status code might be intercepted by various processes in the pipeline for special handling. For example, the FormsAuthenticationModule class looks for 401 responses and redirects the user to the login page in response.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)