diff --git a/network/JSONTcpClient.cs b/network/JSONTcpClient.cs index c252d84..2d649d0 100644 --- a/network/JSONTcpClient.cs +++ b/network/JSONTcpClient.cs @@ -47,5 +47,11 @@ namespace sharp.json.network public void Close(){ this.client.Close(); } + + public TcpClient TcpClient + { + get { return this.client; } + } + } }