XmlValidatingReader.LinePosition 属性

定义

获取当前行位置。

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

属性值

Int32

当前行位置。 此属性的起始值为 1。

实现

注解

备注

XmlValidatingReader在 .NET Framework 2.0 中已过时。 可以使用类和Create方法创建验证XmlReader实例XmlReaderSettings。 有关详细信息,请参阅 XmlReader 引用页的“备注”部分。

此属性通常用于错误报告,但可以随时调用。 此属性 1的起始值为 。

指示的位置是标记中文本的第一个字符。

<root>  
 abc<tag/>  
</root>  

在前面的 XML 文本的第一行上,对应于LinePosition字符;在第二行中,5``LinePosition对应于字符t;在第三行中,LinePosition``3对应于字符。r``r``2

Combined with LineNumber, a value of 1,1 indicates the start of the document.

适用于

另请参阅