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