ParserError.ErrorText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置表示 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
属性值
包含错误信息的字符串。
示例
下面的代码示例演示如何填充 ErrorText 对象的属性 ParserError 。
MyParserError.ErrorText = "My Error Text";
myParserError.ErrorText = "My Error Text"
注解
使用 ErrorText 该属性为分析器错误提供程序员定义的错误消息,以便在对象中 ParserError 显示。