Click or drag to resize

IncomingMessageManagerTMessageHandlerMatch Method

Attempts to match an incoming message.

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

Parameters

message
Type: T
The message that's been received.

Return Value

Type: Boolean
True if this handler can handle this message.
Remarks
This method is NOT Demo3D thread safe. It may be called in any thread including a .Net System thread. Do not access Demo3D core code from within this method.
See Also