XmlException.LinePosition 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指示错误发生位置的行位置。 行位置从 1 开始。
public:
property int LinePosition { int get(); };
public int LinePosition { get; }
member this.LinePosition : int
Public ReadOnly Property LinePosition As Integer
属性值
指示错误发生位置的行位置。
注解
尝试将字符串 "<<foo>\r\nbar</foo>"
加载为 XML 引发 XmlException
以下消息:
System.Xml.XmlException: 'Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 1, position 2.'
显示行位置基于 1, (在第二个字符) 中找到错误。