Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlReaderSettings::LineNumberOffset Property

 

Gets or sets line number offset of the XmlReader object.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
property int LineNumberOffset {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The line number offset. The default is 0.

The LineNumberOffset setting determines the point where the LineNumber property starts counting. This is useful if your XML data is embedded within a larger document. For example, if your XML data were embedded in a larger document, and your data started on line 101 of the document, you may want to specify that the reader start at line 100. Therefore, if the reader threw an exception while parsing the first line of the XML, it would report the line number as line 101, rather than line 1.

Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft