Click or drag to resize

ServerChannelSendMulticast Method (String, Object, Boolean)

Sends an multicast message to OBCOM NetServer with encryption option.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public void SendMulticast(
	string name,
	Object value,
	bool encrypted
)

Parameters

name
Type: SystemString
The name of the multicast message.
value
Type: SystemObject
The multicast object message value.
encrypted
Type: SystemBoolean
If true the message is sent encrypted.
Remarks

Multicast messages are generated by OBCOM NetServer when particular event occurs (e.g., the price of a stock has reached a certain limit).

When a multicast message arrives, the ProcessMulticast(String, Message) method of this ServerChannel will be called. The name argument has the following format:

{HostName.}MulticastName

with an optional

HostName
. If no
HostName
is specified, the OBCOM NetServer Local Host name value will be used. The
MulticastName
is requiered and has a maximum length of 10 chars.

See Also