SqlRowUpdatingEventArgs.cs 802 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Data.SqlClient.SqlRowUpdatingEventArgs.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Daniel Morgan ([email protected])
  7. //
  8. // (C) Ximian, Inc 2002
  9. //
  10. using System;
  11. using System.Data;
  12. using System.Data.Common;
  13. namespace System.Data.SqlClient
  14. {
  15. public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs
  16. {
  17. [MonoTODO]
  18. public SqlRowUpdatingEventArgs( DataRow row,
  19. IDbCommand command, StatementType statementType,
  20. DataTableMapping tableMapping) {
  21. // FIXME: do the constructor
  22. }
  23. [MonoTODO]
  24. public new SqlCommand Command {
  25. get {
  26. throw new NotImplementedException ();
  27. }
  28. set {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. [MonoTODO]
  33. ~SqlRowUpdatingEventArgs() {
  34. // FIXME: create destructor to release resources
  35. }
  36. }
  37. }