Exemple #1
0
        /// <summary>
        /// Flushes the post buffer
        /// </summary>
        /// <returns>The buffer contents</returns>
        public string FlushPostBuffer()
        {
            string ret = m_sbPostBuffer.ToString();

            m_sbPostBuffer.Clear();
            return(ret);
        }
Exemple #2
0
        /// <summary>
        /// Flushes the temporary buffer
        /// </summary>
        /// <returns>The buffer contents</returns>
        public string FlushTempBuffer()
        {
            string ret = m_sbTempBuffer.ToString();

            m_sbTempBuffer.Clear();
            return(ret);
        }