Beispiel #1
0
 public Meta(string name, string content)
 {
     ElementAttributes.ChainSet("name", name).ChainSet("content", content);
 }
Beispiel #2
0
 public Image(string src, string alt = null)
 {
     ElementAttributes.ChainSet("src", src).ChainSet("alt", alt);
 }
Beispiel #3
0
 public Link(string relType, string href)
 {
     ElementAttributes.ChainSet("rel", relType).ChainAdd("href", href);
 }