C# Класс Emgu.Util.DisposableObject

An abstract class that wrap around a disposable object
Наследование: IDisposable
Показать файл Открыть проект

Открытые методы

Метод Описание
Dispose ( ) : void

The dispose function that implements IDisposable interface

Защищенные методы

Метод Описание
DisposeObject ( ) : void

Release the unmanaged resources

ReleaseManagedResources ( ) : void

Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object

Приватные методы

Метод Описание
Dispose ( bool disposing ) : void

Dispose(bool disposing) executes in two distinct scenarios. If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. If disposing equals false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed.

Описание методов

Dispose() публичный Метод

The dispose function that implements IDisposable interface
public Dispose ( ) : void
Результат void

DisposeObject() защищенный абстрактный Метод

Release the unmanaged resources
protected abstract DisposeObject ( ) : void
Результат void

ReleaseManagedResources() защищенный Метод

Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
protected ReleaseManagedResources ( ) : void
Результат void