* DataSet.cs :
[mono.git] / mcs / class / System.Data / System.Data / FillErrorEventHandler.cs
1 //
2 // System.Data.FillErrorEventHandler.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 FillError event.
14         /// </summary>
15         [Serializable]
16         public delegate void FillErrorEventHandler(object sender, FillErrorEventArgs e);
17
18 }