SqlRowUpdatedEventArgs.cs 784 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Data.SqlClient.SqlRowUpdatedEventArgs.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. public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs
  15. {
  16. [MonoTODO]
  17. public SqlRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
  18. : base (row, command, statementType, tableMapping)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public new SqlCommand Command {
  24. get { throw new NotImplementedException (); }
  25. }
  26. [MonoTODO]
  27. ~SqlRowUpdatedEventArgs ()
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. }