Click or drag to resize

ReplyListener Delegate

Called when an asynchronous reply 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 ReplyListener(
	int sequence,
	Message message,
	Object context
)

Parameters

sequence
Type: SystemInt32
The sequence number of the reply message.
message
Type: OBCOM.NetClientMessage
The data of the reply message.
context
Type: SystemObject
A user-defined context object for the reply.
Remarks
An asynchronous reply message is received for every asynchronous transaction request sent using the SendRequest(String, Object) method. Normally, though, transaction request are synchronous, in which the server process is blocked until the reply message is received.
See Also