This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,171 @@
using System;
using System.Runtime.Serialization;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>The exception that is thrown when a configuration system error has occurred.</summary>
// Token: 0x0200037B RID: 891
[Token(Token = "0x200037B")]
[Serializable]
public class ConfigurationException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
// Token: 0x06001773 RID: 6003 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001773")]
[Address(RVA = "0x2F39A50", Offset = "0x2F38A50", VA = "0x182F39A50")]
[Obsolete]
public ConfigurationException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="info">The object that holds the information to deserialize.</param>
/// <param name="context">Contextual information about the source or destination.</param>
// Token: 0x06001774 RID: 6004 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001774")]
[Address(RVA = "0x2F39B70", Offset = "0x2F38B70", VA = "0x182F39B70")]
protected ConfigurationException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
// Token: 0x06001775 RID: 6005 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001775")]
[Address(RVA = "0x2F39B40", Offset = "0x2F38B40", VA = "0x182F39B40")]
[Obsolete]
public ConfigurationException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
// Token: 0x06001776 RID: 6006 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001776")]
[Address(RVA = "0x2F39A80", Offset = "0x2F38A80", VA = "0x182F39A80")]
[Obsolete]
public ConfigurationException(string message, Exception inner)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
/// <param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
/// <param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> was thrown.</param>
// Token: 0x06001777 RID: 6007 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001777")]
[Address(RVA = "0x2F39BA0", Offset = "0x2F38BA0", VA = "0x182F39BA0")]
[Obsolete]
public ConfigurationException(string message, Exception inner, string filename, int line)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
/// <param name="inner">The inner exception that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown, if any.</param>
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
// Token: 0x06001778 RID: 6008 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001778")]
[Address(RVA = "0x2F39AE0", Offset = "0x2F38AE0", VA = "0x182F39AE0")]
[Obsolete]
public ConfigurationException(string message, Exception inner, XmlNode node)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
/// <param name="filename">The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
/// <param name="line">The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> was thrown.</param>
// Token: 0x06001779 RID: 6009 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001779")]
[Address(RVA = "0x2F39AB0", Offset = "0x2F38AB0", VA = "0x182F39AB0")]
[Obsolete]
public ConfigurationException(string message, string filename, int line)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.ConfigurationException" /> class.</summary>
/// <param name="message">A message describing why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</param>
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> to be thrown.</param>
// Token: 0x0600177A RID: 6010 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600177A")]
[Address(RVA = "0x2F39B10", Offset = "0x2F38B10", VA = "0x182F39B10")]
[Obsolete]
public ConfigurationException(string message, XmlNode node)
{
}
/// <summary>Gets a description of why this configuration exception was thrown.</summary>
/// <returns>A description of why this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</returns>
// Token: 0x170004F8 RID: 1272
// (get) Token: 0x0600177B RID: 6011 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004F8")]
public virtual string BareMessage
{
[Token(Token = "0x600177B")]
[Address(RVA = "0x2F39BD0", Offset = "0x2F38BD0", VA = "0x182F39BD0", Slot = "12")]
get
{
return null;
}
}
/// <summary>Gets the path to the configuration file that caused this configuration exception to be thrown.</summary>
/// <returns>The path to the configuration file that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</returns>
// Token: 0x170004F9 RID: 1273
// (get) Token: 0x0600177C RID: 6012 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004F9")]
public virtual string Filename
{
[Token(Token = "0x600177C")]
[Address(RVA = "0x2F39C00", Offset = "0x2F38C00", VA = "0x182F39C00", Slot = "13")]
get
{
return null;
}
}
/// <summary>Gets the line number within the configuration file at which this configuration exception was thrown.</summary>
/// <returns>The line number within the configuration file at which this <see cref="T:System.Configuration.ConfigurationException" /> exception was thrown.</returns>
// Token: 0x170004FA RID: 1274
// (get) Token: 0x0600177D RID: 6013 RVA: 0x0000A590 File Offset: 0x00008790
[Token(Token = "0x170004FA")]
public virtual int Line
{
[Token(Token = "0x600177D")]
[Address(RVA = "0x2F39C30", Offset = "0x2F38C30", VA = "0x182F39C30", Slot = "14")]
get
{
return 0;
}
}
/// <summary>Gets the path to the configuration file from which the internal <see cref="T:System.Xml.XmlNode" /> object was loaded when this configuration exception was thrown.</summary>
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</param>
/// <returns>A <see langword="string" /> representing the node file name.</returns>
// Token: 0x0600177E RID: 6014 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600177E")]
[Address(RVA = "0x2F399F0", Offset = "0x2F389F0", VA = "0x182F399F0")]
[Obsolete]
public static string GetXmlNodeFilename(XmlNode node)
{
return null;
}
/// <summary>Gets the line number within the configuration file that the internal <see cref="T:System.Xml.XmlNode" /> object represented when this configuration exception was thrown.</summary>
/// <param name="node">The <see cref="T:System.Xml.XmlNode" /> that caused this <see cref="T:System.Configuration.ConfigurationException" /> exception to be thrown.</param>
/// <returns>An <see langword="int" /> representing the node line number.</returns>
// Token: 0x0600177F RID: 6015 RVA: 0x0000A5A8 File Offset: 0x000087A8
[Token(Token = "0x600177F")]
[Address(RVA = "0x2F39A20", Offset = "0x2F38A20", VA = "0x182F39A20")]
[Obsolete]
public static int GetXmlNodeLineNumber(XmlNode node)
{
return 0;
}
}
}