[This is preliminary documentation and is subject to change.]

If callHandlers is true, OnServerMessage handlers are called and if result is Normal data are sent to the client.

Namespace:  Phoenix
Assembly:  Phoenix (in Phoenix.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void SendToClient(
	byte[] data,
	bool callHandlers
)
Public Shared Sub SendToClient ( _
	data As Byte(), _
	callHandlers As Boolean _
)
public:
static void SendToClient(
	array<unsigned char>^ data, 
	bool callHandlers
)

Parameters

data
array< Byte >[]()[]
Buffer to send.
callHandlers
Boolean
True if OnServerMessage handlers should be called; otherwise false.

See Also