/// <summary>
        /// Gets the stream used for reading the body of the response from the
        /// server.
        /// </summary>
        /// <returns>A network stream to read body of the message.</returns>
        public override Stream GetResponseStream()
        {
            Stream retVal = m_responseStream.CloneStream();

            m_responseStream.m_dataStart = m_responseStream.m_dataEnd = 0;

            return(retVal);
        }