ParserError 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ParserError 类的新实例。
重载
ParserError() |
初始化 ParserError 类的新实例。 |
ParserError(String, String, Int32) |
使用指定的错误文本、虚拟路径和错误源行号初始化 ParserError 类的新实例。 |
ParserError()
初始化 ParserError 类的新实例。
public:
ParserError();
public ParserError ();
Public Sub New ()
示例
下面的代码示例演示如何初始化类的 ParserError 空实例,以及如何使用其属性。
ParserError MyParserError = new ParserError();
MyParserError.ErrorText = "My Error Text";
MyParserError.Line = 5;
MyParserError.VirtualPath = "MyPath";
Dim myParserError As New ParserError()
myParserError.ErrorText = "My Error Text"
myParserError.Line = 5
myParserError.VirtualPath = "MyPath"
适用于
ParserError(String, String, Int32)
使用指定的错误文本、虚拟路径和错误源行号初始化 ParserError 类的新实例。
public:
ParserError(System::String ^ errorText, System::String ^ virtualPath, int line);
public ParserError (string errorText, string virtualPath, int line);
new System.Web.ParserError : string * string * int -> System.Web.ParserError
Public Sub New (errorText As String, virtualPath As String, line As Integer)
参数
- errorText
- String
错误消息文本。
- virtualPath
- String
发生错误时正在分析的文件的虚拟路径。
- line
- Int32
错误源的行号。
注解
使用 ParserError 构造函数使用自定义设置初始化 ParserError 对象。 构造 ParserError 函数具有以下属性:
该 ErrorText 属性是包含与分析器错误相关的错误消息的字符串。
该 VirtualPath 属性是一个只读字符串,指定包含分析器错误的文件的虚拟路径。
该 Line 属性是引发此 ParserError 对象的文件中的行号。