C# Class ModernWPF.ViewModels.DisposableViewModel

A view model base class that also implements IDisposable.
Inheritance: ViewModelBase, IDisposable
Afficher le fichier Open project: soukoku/ModernWPF

Méthodes publiques

Méthode Description
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Méthodes protégées

Méthode Description
OnDisposingManaged ( ) : void

Called when disposing managed resources.

OnDisposingNative ( ) : void

Called when disposing native resources.

VerifyNotDisposed ( ) : void

Throws exception if this instance is disposed.

Private Methods

Méthode Description
Dispose ( bool disposing ) : void

Method Details

Dispose() public méthode

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
Résultat void

OnDisposingManaged() protected méthode

Called when disposing managed resources.
protected OnDisposingManaged ( ) : void
Résultat void

OnDisposingNative() protected méthode

Called when disposing native resources.
protected OnDisposingNative ( ) : void
Résultat void

VerifyNotDisposed() protected méthode

Throws exception if this instance is disposed.
protected VerifyNotDisposed ( ) : void
Résultat void