Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

36 lines
1015 B
C#

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