41 lines
1.8 KiB
C#
41 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents the exception that is thrown when an action is tried on a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
|
|
// Token: 0x0200001B RID: 27
|
|
[Token(Token = "0x200001B")]
|
|
[Serializable]
|
|
public class DeletedRowInaccessibleException : DataException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> 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: 0x06000146 RID: 326 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000146")]
|
|
[Address(RVA = "0xA22800", Offset = "0xA21800", VA = "0x180A22800")]
|
|
protected DeletedRowInaccessibleException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class.</summary>
|
|
// Token: 0x06000147 RID: 327 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000147")]
|
|
[Address(RVA = "0xA227B0", Offset = "0xA217B0", VA = "0x180A227B0")]
|
|
public DeletedRowInaccessibleException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DeletedRowInaccessibleException" /> class with the specified string.</summary>
|
|
/// <param name="s">The string to display when the exception is thrown.</param>
|
|
// Token: 0x06000148 RID: 328 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000148")]
|
|
[Address(RVA = "0xA22880", Offset = "0xA21880", VA = "0x180A22880")]
|
|
public DeletedRowInaccessibleException(string s)
|
|
{
|
|
}
|
|
}
|
|
}
|