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 you call the <see cref="M:System.Data.DataRow.EndEdit" /> method within the <see cref="E:System.Data.DataTable.RowChanging" /> event.</summary>
|
|
// Token: 0x0200001D RID: 29
|
|
[Token(Token = "0x200001D")]
|
|
[Serializable]
|
|
public class InRowChangingEventException : DataException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> 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: 0x0600014C RID: 332 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600014C")]
|
|
[Address(RVA = "0x9E94F0", Offset = "0x9E84F0", VA = "0x1809E94F0")]
|
|
protected InRowChangingEventException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class.</summary>
|
|
// Token: 0x0600014D RID: 333 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600014D")]
|
|
[Address(RVA = "0x9E9480", Offset = "0x9E8480", VA = "0x1809E9480")]
|
|
public InRowChangingEventException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InRowChangingEventException" /> class with the specified string.</summary>
|
|
/// <param name="s">The string to display when the exception is thrown.</param>
|
|
// Token: 0x0600014E RID: 334 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600014E")]
|
|
[Address(RVA = "0x9E94D0", Offset = "0x9E84D0", VA = "0x1809E94D0")]
|
|
public InRowChangingEventException(string s)
|
|
{
|
|
}
|
|
}
|
|
}
|