Click or drag to resize

IncomingMessageManagerTMessageHandlerHandleMessage Method

Handles a message. The connection transaction manager is blocked while this is running. The message will be Dispose'd when this call returns.

Namespace:  Demo3D.Net
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 10.0.0.0 (10.0.0.0)
Syntax
C#
protected abstract void HandleMessage(
	T message
)

Parameters

message
Type: T
The message that's been received.
Remarks
This method is Demo3D thread safe. It's called in the same thread (synchronization context) as the method used to register this MessageHandler.
See Also