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: 0x020003D3 RID: 979
|
|
[Token(Token = "0x20003D3")]
|
|
[Serializable]
|
|
public class SettingsPropertyIsReadOnlyException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyIsReadOnlyException" /> class.</summary>
|
|
// Token: 0x0600199B RID: 6555 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600199B")]
|
|
[Address(RVA = "0x28AC710", Offset = "0x28AB510", VA = "0x1828AC710")]
|
|
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: 0x0600199C RID: 6556 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600199C")]
|
|
[Address(RVA = "0x28AC740", Offset = "0x28AB540", VA = "0x1828AC740")]
|
|
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: 0x0600199D RID: 6557 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600199D")]
|
|
[Address(RVA = "0x28AC770", Offset = "0x28AB570", VA = "0x1828AC770")]
|
|
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: 0x0600199E RID: 6558 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600199E")]
|
|
[Address(RVA = "0x28AC6E0", Offset = "0x28AB4E0", VA = "0x1828AC6E0")]
|
|
public SettingsPropertyIsReadOnlyException(string message, Exception innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|