C# Класс Channel9Downloader.ViewModels.Framework.BaseViewModel

Provides common functionality for ViewModel classes
Наследование: ValidatingObject, IBaseViewModel
Показать файл Открыть проект

Открытые методы

Метод Описание
Dispose ( ) : void

Invoked when this object is being removed from the application and will be subject to garbage collection.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Disposes managed and unmanaged resources.

OnDispose ( ) : void

Finalizes an instance of the BaseViewModel class. Child classes can override this method to perform clean-up logic, such as removing event handlers.

Описание методов

Dispose() публичный Метод

Invoked when this object is being removed from the application and will be subject to garbage collection.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

Disposes managed and unmanaged resources.
protected Dispose ( bool disposing ) : void
disposing bool Determines whether dispose has been called from user code () /// or from a finalizer ().
Результат void

OnDispose() защищенный Метод

Finalizes an instance of the BaseViewModel class. Child classes can override this method to perform clean-up logic, such as removing event handlers.
protected OnDispose ( ) : void
Результат void