using System; using Cpp2IlInjected; namespace System.Xml { /// Provides an interface to enable a class to return line and position information. // Token: 0x020000CB RID: 203 [Token(Token = "0x20000CB")] public interface IXmlLineInfo { /// Gets the current line number. /// The current line number or 0 if no line information is available (for example, returns ). // Token: 0x17000302 RID: 770 // (get) Token: 0x06000A77 RID: 2679 [Token(Token = "0x17000302")] int LineNumber { [Token(Token = "0x6000A77")] [Address(Slot = "0")] get; } /// Gets the current line position. /// The current line position or 0 if no line information is available (for example, returns ). // Token: 0x17000303 RID: 771 // (get) Token: 0x06000A78 RID: 2680 [Token(Token = "0x17000303")] int LinePosition { [Token(Token = "0x6000A78")] [Address(Slot = "1")] get; } } }