/*++
         *
         *  Close - Closes the Response after the use.
         *
         *  This causes the read stream to be closed.
         *
         * --*/

        /// <include file='doc\HttpWebResponse.uex' path='docs/doc[@for="HttpWebResponse.Close"]/*' />
        public override void Close()
        {
            ConnectStream chkConnectStream = m_ConnectStream;

            if (chkConnectStream != null)
            {
                chkConnectStream.Close();
            }
        }