private async Task <TcpChannel> ConnectTcpAsync(string address, int port) { var channel = new TcpChannel(address, port); await channel.ConnectAsync(); return(channel); }