2
0

RowUpdatedEventArgs.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //
  2. // System.Data.Common.RowUpdatedEventArgs.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. using System.Data;
  10. namespace System.Data.Common
  11. {
  12. /// <summary>
  13. /// Provides data for the RowUpdated event of a .NET data provider.
  14. /// </summary>
  15. public abstract class RowUpdatedEventArgs : EventArgs
  16. {
  17. [MonoTODO]
  18. protected RowUpdatedEventArgs(DataRow dataRow,
  19. IDbCommand command,
  20. StatementType statementType,
  21. DataTableMapping tableMapping) {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public IDbCommand Command {
  26. get { throw new NotImplementedException (); }
  27. }
  28. [MonoTODO]
  29. public Exception Errors {
  30. get { throw new NotImplementedException (); }
  31. set { throw new NotImplementedException (); }
  32. }
  33. [MonoTODO]
  34. public int RecordsAffected {
  35. get { throw new NotImplementedException (); }
  36. }
  37. [MonoTODO]
  38. public DataRow Row {
  39. get { throw new NotImplementedException (); }
  40. }
  41. [MonoTODO]
  42. public StatementType StatementType {
  43. get { throw new NotImplementedException (); }
  44. }
  45. [MonoTODO]
  46. public UpdateStatus Status {
  47. get { throw new NotImplementedException (); }
  48. set { throw new NotImplementedException (); }
  49. }
  50. [MonoTODO]
  51. public DataTableMapping TableMapping {
  52. get { throw new NotImplementedException (); }
  53. }
  54. }
  55. }