Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingsPropertyWrongTypeException.cs
T
2026-04-10 22:50:51 +02:00

51 lines
2.7 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides an exception that is thrown when an invalid type is used with a <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
// Token: 0x020003D5 RID: 981
[Token(Token = "0x20003D5")]
[Serializable]
public class SettingsPropertyWrongTypeException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class.</summary>
// Token: 0x060019A3 RID: 6563 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A3")]
[Address(RVA = "0x28ACD70", Offset = "0x28ABB70", VA = "0x1828ACD70")]
public SettingsPropertyWrongTypeException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameters.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination of the serialized stream.</param>
// Token: 0x060019A4 RID: 6564 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A4")]
[Address(RVA = "0x28ACD40", Offset = "0x28ABB40", VA = "0x1828ACD40")]
protected SettingsPropertyWrongTypeException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameter.</summary>
/// <param name="message">A string containing an exception message.</param>
// Token: 0x060019A5 RID: 6565 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A5")]
[Address(RVA = "0x28ACD10", Offset = "0x28ABB10", VA = "0x1828ACD10")]
public SettingsPropertyWrongTypeException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyWrongTypeException" /> class based on the supplied parameters.</summary>
/// <param name="message">A string containing an exception message.</param>
/// <param name="innerException">The exception that is the cause of the current exception.</param>
// Token: 0x060019A6 RID: 6566 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A6")]
[Address(RVA = "0x28ACCE0", Offset = "0x28ABAE0", VA = "0x1828ACCE0")]
public SettingsPropertyWrongTypeException(string message, Exception innerException)
{
}
}
}