C# 클래스 AK.F1.Timing.Utility.DisposableBase

Defines a base for a class which implements the Disposable pattern. This class is .
상속: IDisposable
파일 보기 프로젝트 열기: simoneb/ak-f1-timing

공개 메소드들

메소드 설명
DisposeOf ( IDisposable disposable ) : void

Helper method to safely dispose of the specified disposable instance.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Disposes of this instance.

DisposeOfManagedResources ( ) : void

Disposes of the managed resources held by this instance. This method is guaranteed to be invoked only once when this instance is initially disposed of.

비공개 메소드들

메소드 설명
CheckDisposed ( ) : void
IDisposable ( ) : void

메소드 상세

Dispose() 보호된 메소드

Disposes of this instance.
protected Dispose ( bool disposing ) : void
disposing bool if being called explicitly, otherwise; /// to indicate being called implicitly by the GC.
리턴 void

DisposeOf() 공개 정적인 메소드

Helper method to safely dispose of the specified disposable instance.
public static DisposeOf ( IDisposable disposable ) : void
disposable IDisposable The disposable instance. Can be .
리턴 void

DisposeOfManagedResources() 보호된 추상적인 메소드

Disposes of the managed resources held by this instance. This method is guaranteed to be invoked only once when this instance is initially disposed of.
protected abstract DisposeOfManagedResources ( ) : void
리턴 void