Table of Contents

Class FinalizeDisposable

Namespace
Cuemon
Assembly
Cuemon.Core.dll

Provides a mechanism for releasing both managed and unmanaged resources with focus on the latter. Implements the Disposable

public abstract class FinalizeDisposable : Disposable, IDisposable
Inheritance
Object
FinalizeDisposable
Implements
IDisposable
Inherited Members

Constructors

FinalizeDisposable()

Initializes a new instance of the FinalizeDisposable class.

protected FinalizeDisposable()

Methods

Finalize()

Finalizes an instance of the FinalizeDisposable class.

protected void Finalize()

OnDisposeManagedResources()

Called when this object is being disposed by either Dispose() or Dispose(Boolean) having disposing set to true and Disposed is false.

protected override void OnDisposeManagedResources()

OnDisposeUnmanagedResources()

Called when this object is being disposed by either Dispose() or Dispose(Boolean) and Disposed is false.

protected abstract override void OnDisposeUnmanagedResources()

See Also