Method | Description | |
---|---|---|
GetClientId ( |
Get the client ID of the specified client.
|
|
GetConnectedClients ( ) : |
Get all connected clients to the server
|
|
PrintAllClientInfo ( ) : void |
Print all client information
|
|
PrintClientInfo ( |
Print the client information
|
|
SendData ( object client, byte message, int size ) : void |
Send data to the specified client.
|
|
TCPServer ( int Port, TransmittedCBType aTransmittedCBHandler, ReceivedCBType aReceivedCBHandler, ClientFoundCBType aClientFoundCBHandler, ClientLostCBType aClientLostCBHandler ) : System |
TCP server constuctor, this instanciate the server on the specified port.
|
Method | Description | |
---|---|---|
ReceiveThreadHandler ( object client ) : void |
Handles the data received from a client.
|
|
ServerListeningThreadHandler ( ) : void |
Internal Listen thread, each time a server is created a listening thread is also created.
|
public GetClientId ( |
||
client | ||
return | int |
public GetConnectedClients ( ) : |
||
return |
public PrintClientInfo ( |
||
client | ||
return | void |
public SendData ( object client, byte message, int size ) : void | ||
client | object | |
message | byte | |
size | int | |
return | void |
public TCPServer ( int Port, TransmittedCBType aTransmittedCBHandler, ReceivedCBType aReceivedCBHandler, ClientFoundCBType aClientFoundCBHandler, ClientLostCBType aClientLostCBHandler ) : System | ||
Port | int | |
aTransmittedCBHandler | TransmittedCBType | |
aReceivedCBHandler | ReceivedCBType | |
aClientFoundCBHandler | ClientFoundCBType | |
aClientLostCBHandler | ClientLostCBType | |
return | System |