public void InserteastBoundLongitudeAt(longitudeType newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", index, newValue.ToString());
     }
 }
 public XmlNode AddeastBoundLongitude(longitudeType newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "eastBoundLongitude", newValue.ToString()));
     }
     return(null);
 }