C# Класс GalaSoft.MvvmLight.Messaging.NotificationMessage

Passes a string message (Notification) and a generic value (Content) to a recipient.
Наследование: GenericMessage
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
NotificationMessage ( object sender, object target, string notification )

Initializes a new instance of the NotificationMessage class.

NotificationMessage ( object sender, string notification )

Initializes a new instance of the NotificationMessage class.

NotificationMessage ( string notification )

Initializes a new instance of the NotificationMessage class.

Описание методов

NotificationMessage() публичный Метод

Initializes a new instance of the NotificationMessage class.
public NotificationMessage ( object sender, object target, string notification )
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.
notification string A string containing any arbitrary message to be /// passed to recipient(s)

NotificationMessage() публичный Метод

Initializes a new instance of the NotificationMessage class.
public NotificationMessage ( object sender, string notification )
sender object The message's sender.
notification string A string containing any arbitrary message to be /// passed to recipient(s)

NotificationMessage() публичный Метод

Initializes a new instance of the NotificationMessage class.
public NotificationMessage ( string notification )
notification string A string containing any arbitrary message to be /// passed to recipient(s)