| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // System.ComponentModel.Design.DesignerTransaction.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System;
- namespace System.ComponentModel.Design
- {
- public abstract class DesignerTransaction : IDisposable
- {
- [MonoTODO]
- public DesignerTransaction () {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DesignerTransaction (string description) {
- throw new NotImplementedException ();
- }
-
- void IDisposable.Dispose ()
- {
- this.Dispose();
- }
-
- public abstract void Dispose();
- public bool Canceled
- {
- get {
- throw new NotImplementedException ();
- }
- }
- public bool Committed
- {
- get {
- throw new NotImplementedException ();
- }
- }
-
- public string Description
- {
- get {
- throw new NotImplementedException ();
- }
- }
- }
- }
|