// // System.Data.StateChangeEventHandler.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Represents the method that will handle the StateChange event. /// [Serializable] public delegate void StateChangeEventHandler(object sender, StateChangeEventArgs e); }