public IClientInputChannel Clone()
        {
            TwitterClientChannel channel = new TwitterClientChannel();
            channel.Hostname = Hostname;
            channel.Port = Port;
            channel.IsSecured = IsSecured;
            channel.MaxConcurrentConnections = MaxConcurrentConnections;
            channel.CredentialsProvider = CredentialsProvider;

            return channel;
        }
        public IClientInputChannel Clone()
        {
            TwitterClientChannel channel = new TwitterClientChannel();

            channel.Hostname  = Hostname;
            channel.Port      = Port;
            channel.IsSecured = IsSecured;
            channel.MaxConcurrentConnections = MaxConcurrentConnections;
            channel.CredentialsProvider      = CredentialsProvider;

            return(channel);
        }