public void InsertspecialcontainerAt(SpecialDirectoryType newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Attribute, "", "specialcontainer", index, newValue.ToString()); } }
public XmlNode Addspecialcontainer(SpecialDirectoryType newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Attribute, "", "specialcontainer", newValue.ToString())); } return(null); }
public void ReplacespecialcontainerAt(SpecialDirectoryType newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "specialcontainer", index, newValue.ToString()); }
public void InsertspecialcontainerAt(SpecialDirectoryType newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "specialcontainer", index, newValue.ToString()); }
public XmlNode Addspecialcontainer(SpecialDirectoryType newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "specialcontainer", newValue.ToString()); return null; }