OdbcRowUpdatingEventArgs.cs 827 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.Data.Odbc.OdbcRowUpdatingEventArgs.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Daniel Morgan ([email protected])
  7. // Tim Coleman ([email protected])
  8. //
  9. // (C) Ximian, Inc 2002
  10. // Copyright (C) Tim Coleman, 2002
  11. //
  12. using System;
  13. using System.Data;
  14. using System.Data.Common;
  15. namespace System.Data.Odbc {
  16. public sealed class OdbcRowUpdatingEventArgs : RowUpdatingEventArgs
  17. {
  18. #region Constructors
  19. public OdbcRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
  20. : base (row, command, statementType, tableMapping)
  21. {
  22. }
  23. #endregion // Constructors
  24. #region Properties
  25. public new OdbcCommand Command {
  26. get { return (OdbcCommand) base.Command; }
  27. set { base.Command = value; }
  28. }
  29. #endregion // Properties
  30. }
  31. }