public void Inserttype2At(EnumerationType5 newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString()); } }
public XmlNode Addtype2(EnumerationType5 newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Attribute, "", "type", newValue.ToString())); } return(null); }
public void Replacetype2At(EnumerationType5 newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString()); }