Click or drag to resize

ServerChannelProcessTransaction Method

Called when a transaction request 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 ProcessTransaction(
	string name,
	Message message
)

Parameters

name
Type: SystemString
The name of the transaction.
message
Type: OBCOM.NetClientMessage
The data of the transaction.
Remarks

Every transaction request has a name and a message containing the request data, and every transaction request must be answered (replied to), otherwise the client that send the request will be blocked forever waiting for the reply.

This method is meant to be overriden by classes that extend ServerChannel. This default implementation uses the SendNakReply(Object) method to send a

NAK
reply message explaining the requiered transaction is not implemented.

See Also