Method | Description | |
---|---|---|
Handle ( string msgType, dynamic data = null ) : void |
Handles an event of a given type
|
|
MessageEventHandler ( ) : System |
Constructor for MessageEventhandler
|
|
On ( string msgType, ConnectDisconnect del ) : void |
Adds a ConnectDisconnect Handler
|
|
On ( string msgType, MsgHandler del ) : void |
Adds a Message Handler
|
public Handle ( string msgType, dynamic data = null ) : void | ||
msgType | string | The message type |
data | dynamic | The date to be passed to the handler |
return | void |
public On ( string msgType, ConnectDisconnect del ) : void | ||
msgType | string | The type of message that this should be added to |
del | ConnectDisconnect | The delegate method handling the event |
return | void |
public On ( string msgType, MsgHandler del ) : void | ||
msgType | string | The type of message this should be added to |
del | MsgHandler | The delegate method handling the event |
return | void |