OracleRowUpdatingEventHandler.cs 705 B

123456789101112131415161718192021222324252627
  1. //
  2. // OracleRowUpdatingEventHandler.cs
  3. //
  4. // Part of the Mono class libraries at
  5. // mcs/class/System.Data.OracleClient/System.Data.OracleClient
  6. //
  7. // Assembly: System.Data.OracleClient.dll
  8. // Namespace: System.Data.OracleClient
  9. //
  10. // Author: Tim Coleman <[email protected]>
  11. //
  12. // Parts derived from System.Data.SqlClient.SqlRowUpdatingEventHandler
  13. // Authors:
  14. // Rodrigo Moya ([email protected])
  15. // Daniel Morgan ([email protected])
  16. //
  17. // (C) Ximian, Inc 2002
  18. // Copyright (C) Tim Coleman, 2003
  19. //
  20. // Licensed under the MIT/X11 License.
  21. //
  22. using System;
  23. namespace System.Data.OracleClient {
  24. public delegate void OracleRowUpdatingEventHandler(object sender, OracleRowUpdatingEventArgs e);
  25. }