using System; using Cpp2IlInjected; namespace System.Configuration.Internal { /// Defines an interface used by the .NET Framework to support creating error configuration records. // Token: 0x0200000E RID: 14 [Token(Token = "0x200000E")] public interface IConfigErrorInfo { /// Gets a string specifying the file name related to the configuration details. /// A string specifying a filename. // Token: 0x1700000A RID: 10 // (get) Token: 0x06000021 RID: 33 [Token(Token = "0x1700000A")] string Filename { [Token(Token = "0x6000021")] [Address(Slot = "0")] get; } /// Gets an integer specifying the line number related to the configuration details. /// An integer specifying a line number. // Token: 0x1700000B RID: 11 // (get) Token: 0x06000022 RID: 34 [Token(Token = "0x1700000B")] int LineNumber { [Token(Token = "0x6000022")] [Address(Slot = "1")] get; } } }