| TcpServerHandleConnection Method |
When overridden in a derived class, handles a server connection.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax protected abstract void HandleConnection(
TcpClient client
)
Protected MustOverride Sub HandleConnection (
client As TcpClient
)
protected:
virtual void HandleConnection(
TcpClient^ client
) abstract
abstract HandleConnection :
client : TcpClient -> unit
Parameters
- client
- Type: System.Net.SocketsTcpClient
A TcpClient class used to send and receive data to the client that
connected to the server.
See Also