public void Execute()
        {
            NetworkChannel.DataEncodingScheme dataEncodingScheme = NetworkChannel.VerifyDataEncoding(this.m_requestedEncoding);
            base.Channel.SetEncoding(dataEncodingScheme);
            NetworkChannelCompressionReply networkChannelCompressionReply = new NetworkChannelCompressionReply(base.Channel, dataEncodingScheme);

            networkChannelCompressionReply.Send();
            base.Channel.KeepAlive = true;
        }