HttpResponse.SuppressFormsAuthenticationRedirect Property

Definition

Gets or sets a value that specifies whether forms authentication redirection to the login page should be suppressed.

public:
 property bool SuppressFormsAuthenticationRedirect { bool get(); void set(bool value); };
public bool SuppressFormsAuthenticationRedirect { get; set; }
member this.SuppressFormsAuthenticationRedirect : bool with get, set
Public Property SuppressFormsAuthenticationRedirect As Boolean

Property Value

true if forms authentication redirection should be suppressed; otherwise, false.

Remarks

By default, forms authentication converts HTTP 401 status codes to 302 in order to redirect to the login page. This isn't appropriate for certain classes of errors, such as when authentication succeeds but authorization fails, or when the current request is an AJAX or web service request. This property provides a way to suppress the redirect behavior and send the original status code to the client.

Applies to