C# Class CK.Core.Impl.DisposableActivityMonitor

Trivial implementation of IDisposableActivityMonitor that respects the disposable pattern (to support potential unmanaged resources). Dispose() simply closes all opened groups.
Inheritance: ActivityMonitor, IDisposableActivityMonitor
Datei anzeigen Open project: Invenietis/ck-core Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void

Automatically close any opened groups. Can be called multiple times.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Automatically close any opened groups. Can be called multiple times.

Method Details

Dispose() public method

Automatically close any opened groups. Can be called multiple times.
public Dispose ( ) : void
return void

Dispose() protected method

Automatically close any opened groups. Can be called multiple times.
protected Dispose ( bool disposing ) : void
disposing bool True when is called, false when called from the Garbage collector.
return void