OleDbRowUpdatedEventArgs.cs 907 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // System.Data.OleDb.OleDbRowUpdatedEventArgs
  3. //
  4. // Authors:
  5. // Rodrigo Moya ([email protected])
  6. // Tim Coleman ([email protected])
  7. //
  8. // Copyright (C) Rodrigo Moya, 2002
  9. // Copyright (C) Tim Coleman, 2002
  10. //
  11. using System.Data;
  12. using System.Data.Common;
  13. namespace System.Data.OleDb
  14. {
  15. public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs
  16. {
  17. #region Fields
  18. OleDbCommand command;
  19. #endregion // Fields
  20. #region Constructors
  21. [MonoTODO]
  22. public OleDbRowUpdatedEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
  23. : base (dataRow, command, statementType, tableMapping)
  24. {
  25. this.command = (OleDbCommand) command;
  26. throw new NotImplementedException ();
  27. }
  28. #endregion // Constructors
  29. #region Properties
  30. public new OleDbCommand Command {
  31. get { return command; }
  32. }
  33. #endregion // Properties
  34. }
  35. }