XmlException.LineNumber 属性

定义

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

public:
 property int LineNumber { int get(); };
public int LineNumber { get; }
member this.LineNumber : int
Public ReadOnly Property LineNumber 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 的, (在第一行) 中找到错误。

适用于