ClientSlotSendTransaction Method (String, Object, Boolean) |
Sends a transaction request to the specified
service, optinally encrypting messages.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public Message SendTransaction(
string service,
Object request,
bool encrypted
)
Public Function SendTransaction (
service As String,
request As Object,
encrypted As Boolean
) As Message
Parameters
- service
- Type: SystemString
The name of the transaction service. - request
- Type: SystemObject
The transaction request data. - encrypted
- Type: SystemBoolean
If true the messages are encrypted.
Return Value
Type:
MessageThe service reply
Message.
Remarks
This is a convenience method implemented by the following call:
ClientSlot.SendTransaction(service, request, encrypted, false, 0);
See Also