コード例 #1
0
 public static TagBr title(this TagBr tag, string value)
 {
     tag.Title = value; return(tag);
 }
コード例 #2
0
 public static TagBr @class(this TagBr tag, string value)
 {
     tag.Class = value; return(tag);
 }
コード例 #3
0
 public static TagBr style(this TagBr tag, string value)
 {
     tag.Style = value; return(tag);
 }
コード例 #4
0
 public static TagBr id(this TagBr tag, string value)
 {
     tag.Id = value; return(tag);
 }