Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public void InsertNameAt(NameType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "Name", index, newValue.ToString());
 }