HttpCompileException 构造函数

定义

初始化 HttpCompileException 类的新实例。

重载

HttpCompileException()

初始化 HttpCompileException 类的新实例。

HttpCompileException(String)

初始化 HttpCompileException 类的新实例。

HttpCompileException(CompilerResults, String)

初始化 HttpCompileException 类的新实例。

HttpCompileException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 HttpCompileException 类的新实例。

HttpCompileException()

初始化 HttpCompileException 类的新实例。

public:
 HttpCompileException();
public HttpCompileException ();
Public Sub New ()

适用于

HttpCompileException(String)

初始化 HttpCompileException 类的新实例。

public:
 HttpCompileException(System::String ^ message);
public HttpCompileException (string message);
new System.Web.HttpCompileException : string -> System.Web.HttpCompileException
Public Sub New (message As String)

参数

message
String

发生错误时要指定的异常消息。

适用于

HttpCompileException(CompilerResults, String)

初始化 HttpCompileException 类的新实例。

public:
 HttpCompileException(System::CodeDom::Compiler::CompilerResults ^ results, System::String ^ sourceCode);
public HttpCompileException (System.CodeDom.Compiler.CompilerResults results, string sourceCode);
new System.Web.HttpCompileException : System.CodeDom.Compiler.CompilerResults * string -> System.Web.HttpCompileException
Public Sub New (results As CompilerResults, sourceCode As String)

参数

results
CompilerResults

包含编译器输出和错误消息的 CompilerResults

sourceCode
String

发生错误时正在编译的源代码所属的文件的路径。

注解

对于 sourceCode 参数,可以传递任何描述性为错误情况的字符串信息; 不检查文件或路径。 SourceCode属性返回作为参数值传递的字符串。 如果使用不需要参数的构造函数 sourceCode ,则 SourceCode 属性为 null

适用于

HttpCompileException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 HttpCompileException 类的新实例。

public:
 HttpCompileException(System::String ^ message, Exception ^ innerException);
public HttpCompileException (string message, Exception innerException);
new System.Web.HttpCompileException : string * Exception -> System.Web.HttpCompileException
Public Sub New (message As String, innerException As Exception)

参数

message
String

解释异常原因的错误消息。

innerException
Exception

导致当前异常的异常。 如果 innerException 不为 null,则在处理内部异常的 catch 块中引发当前异常。

适用于