System.Net.Security.Tests.DummyTcpServer.ClientState.ClientState C# (CSharp) Method

ClientState() public method

public ClientState ( TcpClient client ) : System.IO
client System.Net.Sockets.TcpClient
return System.IO
            public ClientState(TcpClient client)
            {
                _tcpClient = client;
                _receiveBuffer = new byte[1024];
                _useSsl = false;
                _closed = false;
            }

Same methods

DummyTcpServer.ClientState::ClientState ( TcpClient client, EncryptionPolicy sslEncryptionPolicy ) : System.IO
DummyTcpServer.ClientState