StateChangeEventHandler.cs 347 B

1234567891011121314151617
  1. //
  2. // System.Data.StateChangeEventHandler.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Represents the method that will handle the StateChange event.
  13. /// </summary>
  14. public delegate void StateChangeEventHandler(object sender, StateChangeEventArgs e);
  15. }