/// <summary>
 /// Represents a loosly parsed html document
 /// </summary>
 public HtmlLightDocument(string content) : base()
 {
     XmlLightParser.Parse(content, XmlLightParser.AttributeFormat.Html, this);
 }
Beispiel #2
0
 /// <summary>
 /// Parses the document provided
 /// </summary>
 public XmlLightDocument(string content)
     : this()
 {
     XmlLightParser.Parse(content, XmlLightParser.AttributeFormat.Xml, this);
 }