C# Class Catel.Disposable

Base class for disposable objects.
Inheritance: IDisposable
Afficher le fichier Open project: Catel/Catel

Private Properties

Свойство Type Description
Dispose void

Méthodes publiques

Méthode Description
Dispose ( ) : void

Disposes this instance.

Méthodes protégées

Méthode Description
CheckDisposed ( ) : void

Checks whether the object is disposed. If so, it will throw the ObjectDisposedException.

DisposeManaged ( ) : void

Disposes the managed resources.

DisposeUnmanaged ( ) : void

Disposes the unmanaged resources.

Private Methods

Méthode Description
Dispose ( bool isDisposing ) : void

Releases unmanaged and - optionally - managed resources.

Method Details

CheckDisposed() protected méthode

Checks whether the object is disposed. If so, it will throw the ObjectDisposedException.
The object is disposed.
protected CheckDisposed ( ) : void
Résultat void

Dispose() public méthode

Disposes this instance.
public Dispose ( ) : void
Résultat void

DisposeManaged() protected méthode

Disposes the managed resources.
protected DisposeManaged ( ) : void
Résultat void

DisposeUnmanaged() protected méthode

Disposes the unmanaged resources.
protected DisposeUnmanaged ( ) : void
Résultat void