상속: IChannel, ITcpIpChannel
예제 #1
0
        public TcpipClient(IPEndPoint endPoint)
        {
            _endPoint = endPoint;
            var socket = new Socket(endPoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp);

            _client = new TcpipServer.Client(socket);
        }
예제 #2
0
파일: TcpipClient.cs 프로젝트: mano-cz/BTDB
 public TcpipClient(IPEndPoint endPoint)
 {
     _endPoint = endPoint;
     var socket = new Socket(endPoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
     _client = new TcpipServer.Client(socket);
 }