Beispiel #1
0
		public void ReplaceIdentifierAt(IdentifierType newValue, int index)
		{
			ReplaceDomElementAt("http://www.opengis.net/wms", "Identifier", index, newValue);
		}
Beispiel #2
0
		public void InsertIdentifierAt(IdentifierType newValue, int index)
		{
			InsertDomElementAt("http://www.opengis.net/wms", "Identifier", index, newValue);
		}
Beispiel #3
0
		public void AddIdentifier(IdentifierType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "Identifier", newValue);
		}
 public authorityEnumerator(IdentifierType par)
 {
     parent = par;
     nIndex = -1;
 }
Beispiel #5
0
 public authorityEnumerator(IdentifierType par)
 {
     parent = par;
     nIndex = -1;
 }
Beispiel #6
0
 public XmlNode AddIdentifier(IdentifierType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "Identifier", newValue);
 }