ParserError.ErrorText 属性

定义

获取或设置表示 ParserError 对象的错误的字符串。

public:
 property System::String ^ ErrorText { System::String ^ get(); void set(System::String ^ value); };
public string ErrorText { get; set; }
member this.ErrorText : string with get, set
Public Property ErrorText As String

属性值

String

包含错误信息的字符串。

示例

下面的代码示例演示如何填充 ErrorText 对象的属性 ParserError

MyParserError.ErrorText = "My Error Text";
myParserError.ErrorText = "My Error Text"

注解

使用 ErrorText 该属性为分析器错误提供程序员定义的错误消息,以便在对象中 ParserError 显示。

适用于