public void InserthrefAt(hrefType newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "href", index, newValue.ToString());
 }
 public void ReplacehrefAt(hrefType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "href", index, newValue.ToString());
 }
 public void Addhref(hrefType newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "href", newValue.ToString());
 }