XmlException.LinePosition 属性

定义

获取指示错误发生位置的行位置。 行位置从 1 开始。

public:
 property int LinePosition { int get(); };
public int LinePosition { get; }
member this.LinePosition : int
Public ReadOnly Property LinePosition As Integer

属性值

Int32

指示错误发生位置的行位置。

注解

尝试将字符串 "<<foo>\r\nbar</foo>" 加载为 XML 引发 XmlException 以下消息:

System.Xml.XmlException: 'Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 1, position 2.'

显示行位置基于 1, (在第二个字符) 中找到错误。

适用于