DesignerTransaction.cs 861 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // System.ComponentModel.Design.DesignerTransaction.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System;
  9. namespace System.ComponentModel.Design
  10. {
  11. public abstract class DesignerTransaction : IDisposable
  12. {
  13. [MonoTODO]
  14. public DesignerTransaction () {
  15. throw new NotImplementedException ();
  16. }
  17. [MonoTODO]
  18. public DesignerTransaction (string description) {
  19. throw new NotImplementedException ();
  20. }
  21. void IDisposable.Dispose ()
  22. {
  23. this.Dispose();
  24. }
  25. public abstract void Dispose();
  26. public bool Canceled
  27. {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. public bool Committed
  33. {
  34. get {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. public string Description
  39. {
  40. get {
  41. throw new NotImplementedException ();
  42. }
  43. }
  44. }
  45. }