public void Set(string name, string value) { if (name != null) { if (value == null) { value = ""; } Shove.HTML.HtmlParse.Attribute a = this[name]; if (a == null) { a = new Shove.HTML.HtmlParse.Attribute(name, value); this.Add(a); } else { a.Value = value; } } }
public void AddAttribute() { Shove.HTML.HtmlParse.Attribute a = new Shove.HTML.HtmlParse.Attribute(this._parseName, this._parseValue, this._parseDelim); base.Add(a); }
public void Add(Shove.HTML.HtmlParse.Attribute a) { this.m_list.Add(a); }