예제 #1
0
 public XmlNode AddName(NameType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Name", newValue.ToString());
     return null;
 }
예제 #2
0
 public void ReplaceNameAt(NameType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Name", index, newValue.ToString());
 }
예제 #3
0
		public void InsertNameAt(NameType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Name", index, newValue.ToString());
		}
예제 #4
0
 public void InsertNameAt(NameType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Name", index, newValue.ToString());
 }
예제 #5
0
		public void AddName(NameType newValue)
		{
			AppendDomChild(NodeType.Element, "", "Name", newValue.ToString());
		}