Click or drag to resize

BaseViewModel.OnPropertyChanged Method

Method called to fire a PropertyChanged event. Also raises the PropertyChanged event to support binding.

Namespace:  BionicCode.Utilities.Net.Standard.ViewModel
Assembly:  BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.4
Syntax
protected virtual void OnPropertyChanged(
	string propertyName = null,
	Object oldValue = null,
	Object newValue = null
)

Parameters

propertyName (Optional)
Type: System.String
The property name.
oldValue (Optional)
Type: System.Object
The value before the property change.
newValue (Optional)
Type: System.Object
The value after the property change.
See Also
https://github.com/BionicCode/BionicCode.Net/blob/master/README.md