CustomError(Int32, String) 构造函数

定义

初始化 CustomError 类的新实例。

public:
 CustomError(int statusCode, System::String ^ redirect);
public CustomError (int statusCode, string redirect);
new System.Web.Configuration.CustomError : int * string -> System.Web.Configuration.CustomError
Public Sub New (statusCode As Integer, redirect As String)

参数

statusCode
Int32

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

redirect
String

映射到错误代码的自定义页 URL。

注解

构造 CustomError 函数不应直接从代码中使用。 它由 ASP.NET 配置系统调用。 使用 GetSection 方法获取 类的CustomError实例。

适用于