コード例 #1
0
 /// <summary>
 /// Parse the whole content of the element tag without the tag
 /// </summary>
 /// <param name="content"></param>
 private void ParseElement(StringStream content)
 {
 }
コード例 #2
0
 /// <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();
 }
コード例 #3
0
 /// <summary>
 /// This is the core method to parse a content state type
 /// </summary>
 /// <param name="content"></param>
 private void ParseCoreContent(StringStream content)
 {
     // Not used
 }