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)
Syntaxpublic int SendOneWay(
string name,
Object message,
bool encrypted
)
Public Function SendOneWay (
name As String,
message As Object,
encrypted As Boolean
) As Integer
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.
RemarksIf 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
is not specified, OBCOM NetServer
Default
Host name will be used.
is the name of the
one-way destination, and the optional
identifies a channel within
. Some
examples:
DEV-INET
HUB:ACASER
DAECLI/(40A0F16C)
See Also