TransactionListener Delegate |
Called when a transaction message is received from the NetServer.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public delegate void TransactionListener(
string name,
Message message
)
Public Delegate Sub TransactionListener (
name As String,
message As Message
)
Parameters
- name
- Type: SystemString
The name of the transaction. - message
- Type: OBCOM.NetClientMessage
The data message of the transaction.
Remarks
Every transaction request has a
name and a
message containing the request data. The transaction
must be
answered (replied to) using the
SendReply(Object, Int32, Boolean) method, otherwise the client that send the message will be
blocked forever waiting for the reply.
See Also