Click or drag to resize

ServerChannelProcessReply Method

Called when an asynchronous transaction reply message is received from OBCOM NetServer.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public virtual void ProcessReply(
	int sequence,
	Message message,
	Object context
)

Parameters

sequence
Type: SystemInt32
The sequence of the reply message.
message
Type: OBCOM.NetClientMessage
The data of the reply message.
context
Type: SystemObject
The user-defined context information of this message.
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.

This method is meant to be overriden by classes that extend ServerChannel. This default implementation simply ignores the asynchronous reply message.

See Also