CustomError.StatusCode 属性

定义

获取或设置 HTTP 错误状态代码。

public:
 property int StatusCode { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("statusCode", IsKey=true, IsRequired=true)]
[System.Configuration.IntegerValidator(MaxValue=999, MinValue=100)]
public int StatusCode { get; set; }
[<System.Configuration.ConfigurationProperty("statusCode", IsKey=true, IsRequired=true)>]
[<System.Configuration.IntegerValidator(MaxValue=999, MinValue=100)>]
member this.StatusCode : int with get, set
Public Property StatusCode As Integer

属性值

Int32

导致重定向到自定义错误页的 HTTP 错误状态代码。

属性

示例

下面的代码示例演示如何使用状态代码。 请参阅类主题中的 CustomError 代码示例,了解如何获取集合。

// Get second error StatusCode.
CustomError currentError1 =
    customErrorsCollection[1];
int currentStatusCode =
    currentError1.StatusCode;

// Set the second error StatusCode.
currentError1.StatusCode = 404;
' Get second error StatusCode.
  Dim currentError1 As CustomError = _
  customErrorsCollection(1)
  Dim currentStatusCode As Integer = _
  currentError1.StatusCode

' Set the second error StatusCode.
  currentError1.StatusCode = 404

注解

ASP.NET 基础结构使用 HTTP 状态代码在发生特定错误时将应用程序重定向到错误页。

备注

仅当由由 ASP.NET 处理的实体导致该自定义错误时才发出;否则,将发出标准错误。

适用于