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