| 1234567891011121314151617 |
- //
- // System.Data.StateChangeEventHandler.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Represents the method that will handle the StateChange event.
- /// </summary>
- public delegate void StateChangeEventHandler(object sender, StateChangeEventArgs e);
- }
|