ModelEditingScope.Dispose Method

Definition

Disposes of this object by aborting changes.

Overloads

Dispose()

Disposes of this object by aborting changes unless the editing scope has already been completed or reverted.

Dispose(Boolean)

Disposes of this object by aborting changes.

Dispose()

Disposes of this object by aborting changes unless the editing scope has already been completed or reverted.

public:
 virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()

Implements

Remarks

If either the editing scope has completed or it has been reverted previously, then calling this method does nothing. This method calls Dispose with the input parameter set to true.

Applies to

Dispose(Boolean)

Disposes of this object by aborting changes.

protected:
 virtual void Dispose(bool disposing);
protected virtual void Dispose (bool disposing);
abstract member Dispose : bool -> unit
override this.Dispose : bool -> unit
Protected Overridable Sub Dispose (disposing As Boolean)

Parameters

disposing
Boolean

Determines whether the changes should be reverted as part of an undo operation or because the object is being finalized.

Remarks

Calls Revert if disposing is set to true.

Applies to