RowUpdatingEventArgs.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Data.Common.RowUpdatingEventArgs.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. namespace System.Data.Common
  10. {
  11. /// <summary>
  12. /// Provides the data for the RowUpdating event of a .NET data provider.
  13. /// </summary>
  14. public abstract class RowUpdatingEventArgs : EventArgs
  15. {
  16. [MonoTODO]
  17. protected RowUpdatingEventArgs(DataRow dataRow,
  18. IDbCommand command,
  19. StatementType statementType,
  20. DataTableMapping tableMapping) {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public IDbCommand Command {
  25. get { throw new NotImplementedException (); }
  26. set { 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 DataRow Row {
  35. get { throw new NotImplementedException (); }
  36. }
  37. [MonoTODO]
  38. public StatementType StatementType {
  39. get { throw new NotImplementedException (); }
  40. }
  41. [MonoTODO]
  42. public UpdateStatus Status {
  43. get { throw new NotImplementedException (); }
  44. set { throw new NotImplementedException (); }
  45. }
  46. [MonoTODO]
  47. public DataTableMapping TableMapping {
  48. get { throw new NotImplementedException (); }
  49. }
  50. }
  51. }