C# Class Open.Core.Common.DisposableBase

Inheritance: INotifyDisposed
Datei anzeigen Open project: philcockfield/Open.TestHarness.SL

Public Methods

Method Description
DisposableBase ( ) : System
Dispose ( ) : void

Protected Methods

Method Description
Dispose ( bool isDisposing ) : void
OnDisposed ( ) : void

Invoked when the Dispose method is called. Use this to dispose of any managed resources or unwire from events etc.

This is a convenience method that is called from the main 'Dispose' virtual method.

Private Methods

Method Description
FireDisposed ( ) : void

Method Details

DisposableBase() public method

public DisposableBase ( ) : System
return System

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

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

OnDisposed() protected method

Invoked when the Dispose method is called. Use this to dispose of any managed resources or unwire from events etc.
This is a convenience method that is called from the main 'Dispose' virtual method.
protected OnDisposed ( ) : void
return void