Exemple #1
0
 public static TagParam type(this TagParam tag, MimeType value)
 {
     tag.Type = value; return(tag);
 }
Exemple #2
0
 public static TagParam valuetype(this TagParam tag, ValueType value)
 {
     tag.ValueType = value; return(tag);
 }
Exemple #3
0
 public static TagParam name(this TagParam tag, string value)
 {
     tag.Name = value; return(tag);
 }
Exemple #4
0
 public static TagParam value(this TagParam tag, string value)
 {
     tag.Value = value; return(tag);
 }
Exemple #5
0
 public static TagParam id(this TagParam tag, string value)
 {
     tag.Id = value; return(tag);
 }