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

Sends data directly to the server.

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

Syntax

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

Parameters

data
array< Byte >[]()[]
Buffer to send.

Remarks

Message is not sent immediatly, instead it is queued and sent from client thread.

See Also