Ejemplo n.º 1
0
		public ISocket4 CreateSocket(string hostName, int port)
		{
			ISocket4 socket = _delegating.CreateSocket(hostName, port);
			_lastClientSocket = new PassThroughSocket(socket);
			
			return _lastClientSocket;
		}
Ejemplo n.º 2
0
        public ISocket4 CreateSocket(string hostName, int port)
        {
            var socket = _delegating.CreateSocket(hostName, port);
            LastClient = new PassThroughSocket(socket);

            return LastClient;
        }
Ejemplo n.º 3
0
        public ISocket4 CreateSocket(string hostName, int port)
        {
            var socket = _delegating.CreateSocket(hostName, port);

            LastClient = new PassThroughSocket(socket);

            return(LastClient);
        }