public static HtmlTextWriter Isindex([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("isindex", atts));
 }
 public static HtmlTextWriter Address([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("address", atts));
 }
 public static HtmlTextWriter Acronym([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("acronym", atts));
 }
 public static HtmlTextWriter Html([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("html", atts));
 }
 public static HtmlTextWriter Colgroup([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("colgroup", atts));
 }
 public static HtmlTextWriter Frameset([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("frameset", atts));
 }
 public static HtmlTextWriter Blockquote([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("blockquote", atts));
 }
 public static HtmlTextWriter Caption([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("caption", atts));
 }
 public static HtmlTextWriter Bgsound([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("bgsound", atts));
 }
Beispiel #10
0
 public static HtmlTextWriter Details([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("details", atts));
 }
Beispiel #11
0
 public static HtmlTextWriter Datalist([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("datalist", atts));
 }
Beispiel #12
0
 public static HtmlTextWriter Summary([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("summary", atts));
 }
Beispiel #13
0
 public static HtmlTextWriter KeyGen([NotNull] this HtmlTextWriter writer, [CanBeNull] object atts = null)
 {
     return(writer.PushTag("keygen", atts));
 }