OleDbRowUpdatingEventArgs.cs 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.Data.OleDb.OleDbRowUpdatingEventArgs
  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 OleDbRowUpdatingEventArgs : RowUpdatingEventArgs
  16. {
  17. #region Fields
  18. OleDbCommand command = null;
  19. #endregion
  20. #region Constructors
  21. [MonoTODO]
  22. public OleDbRowUpdatingEventArgs (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
  29. #region Properties
  30. public new OleDbCommand Command {
  31. get { return command; }
  32. set { command = value; }
  33. }
  34. #endregion
  35. }
  36. }