C# 클래스 Emgu.Util.DisposableObject

An abstract class that wrap around a disposable object
상속: IDisposable
파일 보기 프로젝트 열기: fajoy/RTSPExample

공개 메소드들

메소드 설명
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