51 lines
2.6 KiB
C#
51 lines
2.6 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Provides an exception for read-only <see cref="T:System.Configuration.SettingsProperty" /> objects.</summary>
|
|
// Token: 0x020003CF RID: 975
|
|
[Token(Token = "0x20003CF")]
|
|
[Serializable]
|
|
public class SettingsPropertyIsReadOnlyException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class.</summary>
|
|
// Token: 0x06001984 RID: 6532 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001984")]
|
|
[Address(RVA = "0x2F471C0", Offset = "0x2F461C0", VA = "0x182F471C0")]
|
|
public SettingsPropertyIsReadOnlyException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on the supplied parameters.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
|
|
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the serialized stream.</param>
|
|
// Token: 0x06001985 RID: 6533 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001985")]
|
|
[Address(RVA = "0x2F471F0", Offset = "0x2F461F0", VA = "0x182F471F0")]
|
|
protected SettingsPropertyIsReadOnlyException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on a supplied parameter.</summary>
|
|
/// <param name="message">A string containing an exception message.</param>
|
|
// Token: 0x06001986 RID: 6534 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001986")]
|
|
[Address(RVA = "0x2F47220", Offset = "0x2F46220", VA = "0x182F47220")]
|
|
public SettingsPropertyIsReadOnlyException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class based on 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: 0x06001987 RID: 6535 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001987")]
|
|
[Address(RVA = "0x2F47190", Offset = "0x2F46190", VA = "0x182F47190")]
|
|
public SettingsPropertyIsReadOnlyException(string message, Exception innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|