示例#1
0
 public OtherNode(IElement content)
 {
     Content  = content;
     Children = INodeHelper.TryCreateNodes(content.Children).ToList();
 }
示例#2
0
 public ParagraphNode(IHtmlParagraphElement content)
 {
     Content  = content;
     Children = INodeHelper.TryCreateNodes(content.Children).ToList();
 }
示例#3
0
 public BodyNode(IHtmlBodyElement content)
 {
     Content  = content;
     Children = INodeHelper.TryCreateNodes(content.Children).ToList();
 }