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