Base.UService.ConnectChannel C# (CSharp) Method

ConnectChannel() public method

public ConnectChannel ( string host, int port ) : AChannel
host string
port int
return AChannel
		public override AChannel ConnectChannel(string host, int port)
		{
			USocket newSocket = new USocket(this.poller);
			UChannel channel = new UChannel(newSocket, host, port, this);
			this.idChannels[channel.Id] = channel;
			return channel;
		}