2001-10-12 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / class / System.Data / DataRowChangeEventHandler.cs
1 //
2 // System.Data.DataRowChangeEventHandler.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Represents the method that will handle the RowChanging, RowChanged, RowDeleting, and RowDeleted events of a DataTable.
14         /// </summary>
15         public delegate void DataRowChangeEventHandler(object sender, DataRowChangeEventArgs e);
16
17 }