C# Class Emlid.WindowsIot.Common.DisposableObject

Provides an IDisposable base class.
Inheritance: IDisposable
Datei anzeigen Open project: emlid/Navio-SDK-Windows-IoT

Public Methods

Method Description
Dispose ( ) : void

Pro-actively frees resources owned by this instance.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Frees resources owned by this instance.

Method Details

Dispose() public method

Pro-actively frees resources owned by this instance.
public Dispose ( ) : void
return void

Dispose() protected abstract method

Frees resources owned by this instance.
protected abstract Dispose ( bool disposing ) : void
disposing bool /// True when called via , false when called from the finalizer. ///
return void