/// <summary> /// Parse the whole content of the element tag without the tag /// </summary> /// <param name="content"></param> private void ParseElement(StringStream content) { }
/// <summary> /// The XML Prolog. /// The XML prolog is optional. If it exists, it must come first in the document. /// </summary> /// <param name="content"></param> private void ParseXMLProlog(StringStream content) { throw new NotImplementedException(); }
/// <summary> /// This is the core method to parse a content state type /// </summary> /// <param name="content"></param> private void ParseCoreContent(StringStream content) { // Not used }