Class FinalizeDisposable
Provides a mechanism for releasing both managed and unmanaged resources with focus on the latter. Implements the Disposable
Implements
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public abstract class FinalizeDisposable : Disposable, IDisposable
Constructors
| Improve this Doc View SourceFinalizeDisposable()
Initializes a new instance of the FinalizeDisposable class.
Declaration
protected FinalizeDisposable()
Methods
| Improve this Doc View SourceFinalize()
Finalizes an instance of the FinalizeDisposable class.
Declaration
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
.
Declaration
protected override void OnDisposeManagedResources()
Overrides
| Improve this Doc View SourceOnDisposeUnmanagedResources()
Called when this object is being disposed by either Dispose() or Dispose(Boolean) and Disposed is false
.
Declaration
protected abstract override void OnDisposeUnmanagedResources()