public void InsertRemoteWFSAt(EnumerationType9 newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "", "RemoteWFS", index, newValue.ToString());
     }
 }
 public XmlNode AddRemoteWFS(EnumerationType9 newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "", "RemoteWFS", newValue.ToString()));
     }
     return(null);
 }
 public void ReplaceRemoteWFSAt(EnumerationType9 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "RemoteWFS", index, newValue.ToString());
 }
 public void InsertRemoteWFSAt(EnumerationType9 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "RemoteWFS", index, newValue.ToString());
 }
 public XmlNode AddRemoteWFS(EnumerationType9 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "RemoteWFS", newValue.ToString());
     return null;
 }
 public void ReplaceRemoteWFSAt(EnumerationType9 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "RemoteWFS", index, newValue.ToString());
 }