C# Class System.ComponentModel.Design.DesignerTransaction

Identifies a transaction within a designer. Transactions are used to wrap serveral changes into one unit of work, which helps performance.
Inheritance: IDisposable
Show file Open project: gbarnett/shared-source-cli-2.0 Class Usage Examples

Public Methods

Method Description
Cancel ( ) : void
Commit ( ) : void

Protected Methods

Method Description
DesignerTransaction ( ) : System
DesignerTransaction ( string description ) : System
Dispose ( bool disposing ) : void
OnCancel ( ) : void
OnCommit ( ) : void

Private Methods

Method Description
IDisposable ( ) : void

Method Details

Cancel() public method

public Cancel ( ) : void
return void

Commit() public method

public Commit ( ) : void
return void

DesignerTransaction() protected method

protected DesignerTransaction ( ) : System
return System

DesignerTransaction() protected method

protected DesignerTransaction ( string description ) : System
description string
return System

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

OnCancel() protected abstract method

protected abstract OnCancel ( ) : void
return void

OnCommit() protected abstract method

protected abstract OnCommit ( ) : void
return void