public MarkupRawSection(String sName, MarkupSectionType sectionType, String sContent)
 {
     m_sName = sName;
     m_sectionType = sectionType;
     m_sContent = sContent;
     m_iSections++;
 }
        public MarkupRawSection(String sName, MarkupSectionType sectionType)
        {
            m_sName = sName;
            m_sectionType = sectionType;

            m_sContent = String.Empty;
            m_iSections++;
        }