Click or drag to resize

ServerChannelSendOneWay Method (String, Object, Boolean)

Sends a one-way message to the named destination with encryption.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public int SendOneWay(
	string name,
	Object message,
	bool encrypted
)

Parameters

name
Type: SystemString
The name of the destination entity.
message
Type: SystemObject
The message sent to the named destination.
encrypted
Type: SystemBoolean
If {@code true} the message is sent encrypted.

Return Value

Type: Int32
The sequence code of this one-way send operation.
Remarks

If encrypted is true the message will be sent encrypted. The destination is identified by the supplied name, which has the following format:

{HostName:}EntityName{/ChannelName}

where optional items are shown within

"{"
and
"}"
brackets, and the characters
":"
and
"/"
stand for themselves. If the optional
HostName
is not specified, OBCOM NetServer Default Host name will be used.
EntityName
is the name of the one-way destination, and the optional
ChannelName
identifies a channel within
EntityName
. Some examples:

DEV-INET
HUB:ACASER
DAECLI/(40A0F16C)
See Also