Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

22 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Provides data for the <see cref="E:System.Data.DataTable.RowChanged" />, <see cref="E:System.Data.DataTable.RowChanging" />, <see cref="M:System.Data.DataTable.OnRowDeleting(System.Data.DataRowChangeEventArgs)" />, and <see cref="M:System.Data.DataTable.OnRowDeleted(System.Data.DataRowChangeEventArgs)" /> events.</summary>
// Token: 0x0200002D RID: 45
[Token(Token = "0x200002D")]
public class DataRowChangeEventArgs : EventArgs
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataRowChangeEventArgs" /> class.</summary>
/// <param name="row">The <see cref="T:System.Data.DataRow" /> upon which an action is occuring.</param>
/// <param name="action">One of the <see cref="T:System.Data.DataRowAction" /> values.</param>
// Token: 0x06000317 RID: 791 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000317")]
[Address(RVA = "0x52CBE0", Offset = "0x52BBE0", VA = "0x18052CBE0")]
public DataRowChangeEventArgs(DataRow row, DataRowAction action)
{
}
}
}