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

Base class for all messages broadcasted by the Messenger. You can create your own message types by extending this class.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
MessageBase ( )

Initializes a new instance of the MessageBase class.

MessageBase ( object sender )

Initializes a new instance of the MessageBase class.

MessageBase ( object sender, object target )

Initializes a new instance of the MessageBase class.

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

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

Initializes a new instance of the MessageBase class.
public MessageBase ( )

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

Initializes a new instance of the MessageBase class.
public MessageBase ( object sender )
sender object The message's original sender.

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

Initializes a new instance of the MessageBase class.
public MessageBase ( object sender, object target )
sender object The message's original 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.