C# Class SerialComm.ViewModel.ViewModelBase

Inheritance: INotifyPropertyChanged, IDisposable
Mostrar archivo Open project: heiswayi/SerialComm

Public Methods

Method Description
Dispose ( ) : void
RaisePropertyChanged ( string propertyName ) : void

Raises the PropertyChange event for the property specified

Protected Methods

Method Description
Dispose ( bool disposing ) : void
OnPropertyChanged ( string propertyName ) : void

Raises this object's PropertyChanged event.

ViewModelBase ( ) : System

Private Methods

Method Description
VerifyPropertyName ( string propertyName ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

OnPropertyChanged() protected method

Raises this object's PropertyChanged event.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string The property that has a new value.
return void

RaisePropertyChanged() public method

Raises the PropertyChange event for the property specified
public RaisePropertyChanged ( string propertyName ) : void
propertyName string Property name to update. Is case-sensitive.
return void

ViewModelBase() protected method

protected ViewModelBase ( ) : System
return System