C# Class PsmFramework.Engines.Messaging.MessageBase

Base class for all messages broadcasted by the Messenger. You can create your own message types by extending this class.
Afficher le fichier Open project: artwallace/PsmFramework

Méthodes publiques

Méthode Description
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.

Method Details

MessageBase() public méthode

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

MessageBase() public méthode

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

MessageBase() public méthode

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.