C# Class GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase

Basis class for the PropertyChangedMessage{T} class. This class allows a recipient to register for all PropertyChangedMessages without having to specify the type T.
Inheritance: MessageBase
Mostrar archivo Open project: keutmann/SPM

Protected Methods

Method Description
PropertyChangedMessageBase ( object sender, object target, string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

PropertyChangedMessageBase ( object sender, string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

PropertyChangedMessageBase ( string propertyName )

Initializes a new instance of the PropertyChangedMessageBase class.

Method Details

PropertyChangedMessageBase() protected method

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( object sender, object target, string propertyName )
sender object The message's sender.
target object The message's intended target. This parameter can be used /// to give an indication as to whom the message was intended for. Of course /// this is only an indication, amd may be null.
propertyName string The name of the property that changed.

PropertyChangedMessageBase() protected method

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( object sender, string propertyName )
sender object The message's sender.
propertyName string The name of the property that changed.

PropertyChangedMessageBase() protected method

Initializes a new instance of the PropertyChangedMessageBase class.
protected PropertyChangedMessageBase ( string propertyName )
propertyName string The name of the property that changed.