SqlRowUpdatedEventArgs.cs 700 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. [MonoTODO]
  16. public SqlRowUpdatedEventArgs (DataRow row,
  17. IDbCommand command, StatementType statementType,
  18. DataTableMapping tableMapping) {
  19. // FIXME: do the constructor
  20. }
  21. [MonoTODO]
  22. public new SqlCommand Command {
  23. get {
  24. }
  25. }
  26. [MonoTODO]
  27. ~SqlRowUpdatedEventArgs () {
  28. // FIXME: need destructor to release resources
  29. }
  30. }
  31. }