2004-03-10 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / StateChangeEventHandler.cs
1 //
2 // System.Data.StateChangeEventHandler.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 StateChange event.
14         /// </summary>
15         [Serializable]
16         public delegate void StateChangeEventHandler(object sender, StateChangeEventArgs e);
17
18 }