Click or drag to resize

ServerChannelProcessMulticast Method

Called when a multicast message is received from OBCOM NetServer.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public virtual void ProcessMulticast(
	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 these messages, they must be enabled using the EnableMulticast(String) method.

This method is meant to be overriden by classes that extend ServerChannel. This default implementation executes the DisableMulticast(String) method to disable the reception of all unsolicited messages by this server.

See Also