XmlValidatingReader.LineNumber Property

Definition

Gets the current line number.

public int LineNumber { get; }

Property Value

The current line number. The starting value for this property is 1.

Implements

Remarks

Nota

The XmlValidatingReader class is obsolete in .NET Framework 2.0. You can create a validating XmlReader instance by using the XmlReaderSettings class and the Create method. For more information, see the Remarks section of the XmlReader reference page.

This property is most commonly used for error reporting, but can be called at any time. The starting value for this property is 1. Combined with LinePosition, a value of 1,1 indicates the start of the document.

Applies to

Producto Versiones
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also