OdbcRowUpdatedEventArgs.cs 791 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Data.Odbc.OdbcRowUpdatedEventArgs.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 OdbcRowUpdatedEventArgs : RowUpdatedEventArgs
  17. {
  18. #region Constructors
  19. public OdbcRowUpdatedEventArgs (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. }
  28. #endregion // Properties
  29. }
  30. }