41 lines
1.7 KiB
C#
41 lines
1.7 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents the exception that is thrown when you try to change the value of a read-only column.</summary>
|
|
// Token: 0x02000020 RID: 32
|
|
[Token(Token = "0x2000020")]
|
|
[Serializable]
|
|
public class ReadOnlyException : DataException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with serialization information.</summary>
|
|
/// <param name="info">The data that is required to serialize or deserialize an object.</param>
|
|
/// <param name="context">Description of the source and destination of the specified serialized stream.</param>
|
|
// Token: 0x06000155 RID: 341 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000155")]
|
|
[Address(RVA = "0x9F54C0", Offset = "0x9F44C0", VA = "0x1809F54C0")]
|
|
protected ReadOnlyException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class.</summary>
|
|
// Token: 0x06000156 RID: 342 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000156")]
|
|
[Address(RVA = "0x9F5560", Offset = "0x9F4560", VA = "0x1809F5560")]
|
|
public ReadOnlyException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.ReadOnlyException" /> class with the specified string.</summary>
|
|
/// <param name="s">The string to display when the exception is thrown.</param>
|
|
// Token: 0x06000157 RID: 343 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000157")]
|
|
[Address(RVA = "0x9F5540", Offset = "0x9F4540", VA = "0x1809F5540")]
|
|
public ReadOnlyException(string s)
|
|
{
|
|
}
|
|
}
|
|
}
|