Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlBuilder"/> class.
 /// </summary>
 /// <param name="head">The head.</param>
 /// <param name="body">The body.</param>
 public HtmlBuilder(HtmlElement head, HtmlElement body)
 {
     Root = new HtmlRoot(head, body);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlBuilder"/> class.
 /// </summary>
 /// <param name="root">The root.</param>
 public HtmlBuilder(HtmlRoot root)
 {
     Root = root;
 }