XmlReaderSettings.LinePositionOffset Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets line position offset of the XmlReader object.
public:
property int LinePositionOffset { int get(); void set(int value); };
public int LinePositionOffset { get; set; }
member this.LinePositionOffset : int with get, set
Public Property LinePositionOffset As Integer
Property Value
The line position offset. The default is 0.
Remarks
The LinePositionOffset setting determines the point where the LinePosition property starts counting. This is useful if your XML data is embedded within a larger document and there is no new line at the beginning of the XML. In this case, if the reader throws an exception while parsing the XML, you want it to return the line position relative to the main document, not just relative to the XML fragment.