Click or drag to resize

MulticastListener Delegate

Called when a Multicast message is received from the NetServer.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public delegate void MulticastListener(
	string name,
	Message message
)

Parameters

name
Type: SystemString
The name of the multicast message.
message
Type: OBCOM.NetClientMessage
The data of the multicast message.
Remarks
Multicast messages are generated by other servers when particular event occurs (e.g., the price of a stock has reached a certain limit). In order to receive multicast messages, a program has to subscribe to them using either the EnableMulticast(String) or the EnableMulticast(String, MulticastListener) method.
See Also