Пример #1
0
 public XmlNode AddName(NameType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "Name", newValue.ToString());
     return null;
 }
Пример #2
0
 public void ReplaceNameAt(NameType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "Name", index, newValue.ToString());
 }
Пример #3
0
 public void ReplaceNameAt(NameType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "Name", index, newValue.ToString());
 }
Пример #4
0
 public void InsertNameAt(NameType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "Name", index, newValue.ToString());
 }
Пример #5
0
 public void AddName(NameType newValue)
 {
     AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "Name", newValue.ToString());
 }