Example #1
0
 public static TagMeta dir(this TagMeta tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Example #2
0
 public static TagMeta lang(this TagMeta tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
Example #3
0
 public static TagMeta xmllang(this TagMeta tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Example #4
0
 public static TagMeta scheme(this TagMeta tag, string value)
 {
     tag.Scheme = value; return(tag);
 }
Example #5
0
 public static TagMeta content(this TagMeta tag, string value)
 {
     tag.Content = value; return(tag);
 }
Example #6
0
 public static TagMeta name(this TagMeta tag, MetaName value)
 {
     tag.Name = value; return(tag);
 }
Example #7
0
 public static TagMeta httpequiv(this TagMeta tag, HttpEquiv value)
 {
     tag.HttpEquiv = value; return(tag);
 }
 public TagResourceRequest(string resourceArn, Dictionary <string, string> tags, Dictionary <string, string> customHeaders = null)
 {
     this.Headers = customHeaders;
     this.TagMeta = new TagMeta(resourceArn, tags);
 }