Click or drag to resize

DisposableObject Class

http://www.emgu.com
An abstract class that wrap around a disposable object
Inheritance Hierarchy

Namespace:  Emgu.Util
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public abstract class DisposableObject : IDisposable

The DisposableObject type exposes the following members.

Constructors
  NameDescription
Protected methodDisposableObject
Initializes a new instance of the DisposableObject class
Top
Methods
  NameDescription
Public methodDispose
The dispose function that implements IDisposable interface
Protected methodDisposeObject
Release the unmanaged resources
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Destructor
(Overrides ObjectFinalize.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodReleaseManagedResources
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
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also