ViewModelSendPropertyChangedMessageT Method (String, T, T) |
Sends a
PropertyChangedMessageT using either the instance of the Messenger that was passed to this class
(if available) or the Messenger's default instance.
Namespace:
Enkoni.Framework.UI.Mvvm
Assembly:
Enkoni.Framework.UI (in Enkoni.Framework.UI.dll) Version: 1.3.0.1
Syntaxprotected void SendPropertyChangedMessage<T>(
string property,
T oldValue,
T newValue
)
Protected Sub SendPropertyChangedMessage(Of T) (
property As String,
oldValue As T,
newValue As T
)
protected:
generic<typename T>
void SendPropertyChangedMessage(
String^ property,
T oldValue,
T newValue
)
member SendPropertyChangedMessage :
property : string *
oldValue : 'T *
newValue : 'T -> unit
Parameters
- property
- Type: SystemString
The name of the property that changed. - oldValue
- Type: T
The value of the property before it changed. - newValue
- Type: T
The value of the property after it changed.
Type Parameters
- T
- The type of the property that changed.
See Also