Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ LinePosition

int IXmlLineInfo. System.Xml.XmlSubtreeReader.LinePosition
getprivate

Implements System.Xml.IXmlLineInfo.

Definition at line 233 of file XmlSubtreeReader.cs.

234 {
235 get
236 {
237 if (!_useCurNode && reader is IXmlLineInfo xmlLineInfo)
238 {
239 return xmlLineInfo.LinePosition;
240 }
241 return 0;
242 }
243 }