Пример #1
0
 public void InsertBlueAt(BlueType newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
     }
 }
Пример #2
0
 public XmlNode AddBlue(BlueType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString()));
     }
     return(null);
 }
Пример #3
0
 public void ReplaceBlueAt(BlueType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Пример #4
0
 public void AddBlue(BlueType newValue)
 {
     AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
 }
Пример #5
0
 public void ReplaceBlueAt(BlueType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Пример #6
0
 public void InsertBlueAt(BlueType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
 }
Пример #7
0
 public XmlNode AddBlue(BlueType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
     return null;
 }
Пример #8
0
		public void InsertBlueAt(BlueType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Blue", index, newValue.ToString());
		}
Пример #9
0
		public void AddBlue(BlueType newValue)
		{
			AppendDomChild(NodeType.Element, "", "Blue", newValue.ToString());
		}