C# 클래스 Channel9Downloader.ViewModels.Framework.BaseViewModel

Provides common functionality for ViewModel classes
상속: ValidatingObject, IBaseViewModel
파일 보기 프로젝트 열기: MadCowDevelopment/Channel9Downloader

공개 메소드들

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