public void ReplaceNameAt(NameType2 newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "Name", index, newValue.ToString()); }
public void InsertNameAt(NameType2 newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "Name", index, newValue.ToString()); }
public void InsertNameAt(NameType2 newValue, int index) { InsertDomChildAt(NodeType.Attribute, "", "Name", index, newValue.ToString()); }
public XmlNode AddName(NameType2 newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "Name", newValue.ToString()); return null; }
public void AddName(NameType2 newValue) { AppendDomChild(NodeType.Attribute, "", "Name", newValue.ToString()); }