diff --git a/source/NetCoreServer/SslClient.cs b/source/NetCoreServer/SslClient.cs index 27bc371..b047b5c 100644 --- a/source/NetCoreServer/SslClient.cs +++ b/source/NetCoreServer/SslClient.cs @@ -169,6 +169,10 @@ public LingerOption OptionLingerState /// /// Connect the client (synchronous) /// + /// + /// Please note that synchronous connect will not receive data automatically! + /// You should use Receive() or ReceiveAsync() methods manually after successful connection. + /// /// 'true' if the client was successfully connected, 'false' if the client failed to connect public virtual bool Connect() { diff --git a/source/NetCoreServer/TcpClient.cs b/source/NetCoreServer/TcpClient.cs index 863466f..021fa2d 100644 --- a/source/NetCoreServer/TcpClient.cs +++ b/source/NetCoreServer/TcpClient.cs @@ -142,6 +142,10 @@ public LingerOption OptionLingerState /// /// Connect the client (synchronous) /// + /// + /// Please note that synchronous connect will not receive data automatically! + /// You should use Receive() or ReceiveAsync() methods manually after successful connection. + /// /// 'true' if the client was successfully connected, 'false' if the client failed to connect public virtual bool Connect() {