SqlRowUpdatingEventArgs.cs 854 B

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