ClientSlotSendTransaction Method (String, Object) |
Sends a transaction request to the specified
service.
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
)
Public Function SendTransaction (
service As String,
request As Object
) As Message
Parameters
- service
- Type: SystemString
The name of the transaction service. - request
- Type: SystemObject
The transaction request data.
Return Value
Type:
MessageThe service reply
Message.
Remarks
This is a convenience method implemented by the following call:
ClientSlot.SendTransaction(service, request, false, false, 0);
See Also