Ejemplo n.º 1
0
 public void AppendRaw(IEncodedString raw)
 {
     _parts.AddLast(new Tuple <string, bool>(raw.ToEncodedString(), false));
 }
Ejemplo n.º 2
0
 public void AppendEncoded(IEncodedString html)
 {
     _parts.AddLast(new Tuple <string, bool>(html.ToEncodedString(), true));
 }
Ejemplo n.º 3
0
 public IEncodedString EmailButton(string linkText, IEncodedString link, IDictionary <string, string> tableAttributes = null, IDictionary <string, string> ahrefAttributes = null)
 {
     return(EmailButton(linkText, link.ToEncodedString(), tableAttributes, ahrefAttributes));
 }