Click or drag to resize

ServerChannelReplyReceived Method

Called after an asynchronous reply message has been received and before it is processed by a ReplyHandler method.

Namespace:  OBCOM.NetSwitchLib.Servers
Assembly:  OBCOM.NetSwitchLib (in OBCOM.NetSwitchLib.dll) Version: 1.48.7760.35650 (1.48.7760.35650)
Syntax
protected virtual void ReplyReceived(
	ReplyEvent reply
)

Parameters

reply
Type: OBCOM.NetSwitchLib.ServersReplyEvent
Describes the reply event.
Exceptions
ExceptionCondition
ArgumentNullExceptionreply is null.
Remarks

This method should execute initialization logic common to all replies, such as starting a database transaction.

This method is meant to be overridden by classes that extend ServerChannel. This default implementation does nothing.

See Also