FillErrorEventHandler.cs 339 B

1234567891011121314151617
  1. //
  2. // System.Data.FillErrorEventHandler.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 FillError event.
  13. /// </summary>
  14. public delegate void FillErrorEventHandler(object sender, FillErrorEventArgs e);
  15. }