Exemplo n.º 1
0
 public static Head AddScript(this Head node, string type, string content)
 {
     return(node.AddElement(new Script(type, content)));
 }
Exemplo n.º 2
0
 public static Head AddLink(this Head node, string rel, string type, string href)
 {
     return(node.AddElement(new Link(rel, type, href)));
 }
Exemplo n.º 3
0
 public static Head AddScript(this Head node, string href)
 {
     return(node.AddElement(new Script(href)));
 }