Represents a handler in a chain of handlers. All objects that participate in the HandlerChain class must implement this interface. More...
Public Member Functions | |
bool | ProcessMessage (Message message) |
Called with a message on each window. | |
string | ToString () |
Convert the handler to a string. | |
Properties | |
int | ID [get] |
ID of the window. This is used to uniquely identify a window in the collection. | |
Represents a handler in a chain of handlers. All objects that participate in the HandlerChain class must implement this interface.
Definition at line 18 of file HandlerChain_Class.cs.
bool ProcessMessage | ( | Message | message | ) |
Called with a message on each window.
message | Message object representing the message to process. |
Implemented in MessageWindow.
Referenced by HandlerChain.SendMessage().
string ToString | ( | ) |
Convert the handler to a string.
Implemented in MessageWindow.
Referenced by HandlerChain.ToString().
|
get |
ID of the window. This is used to uniquely identify a window in the collection.
Implemented in MessageWindow.
Definition at line 24 of file HandlerChain_Class.cs.
Referenced by HandlerChain.AddHandler(), HandlerChain.RemoveHandler(), and MessageWindow.ToString().