ServerChannelSendRequest Method (String, Object) |
Sends an asynchronous transaction to the specified service with supplied request data.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntaxpublic int SendRequest(
string service,
Object request
)
Public Function SendRequest (
service As String,
request As Object
) As Integer
Parameters
- service
- Type: SystemString
The name of the transaction service.
- request
- Type: SystemObject
The data of the transaction request.
Return Value
Type:
Int32
The unique sequence number of the request.
Remarks
This is a convenience method implemented by the following call:
return SendRequest(service, request, null, null);
See Also