Example #1
0
 public OnlineResourceEnumerator(AuthorityURLType par)
 {
     parent = par;
     nIndex = -1;
 }
			public OnlineResourceEnumerator(AuthorityURLType par) 
			{
				parent = par;
				nIndex = -1;
			}
Example #3
0
 public nameEnumerator(AuthorityURLType par)
 {
     parent = par;
     nIndex = -1;
 }
			public nameEnumerator(AuthorityURLType par) 
			{
				parent = par;
				nIndex = -1;
			}
Example #5
0
		public void ReplaceAuthorityURLAt(AuthorityURLType newValue, int index)
		{
			ReplaceDomElementAt("http://www.opengis.net/wms", "AuthorityURL", index, newValue);
		}
Example #6
0
		public void InsertAuthorityURLAt(AuthorityURLType newValue, int index)
		{
			InsertDomElementAt("http://www.opengis.net/wms", "AuthorityURL", index, newValue);
		}
Example #7
0
		public void AddAuthorityURL(AuthorityURLType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "AuthorityURL", newValue);
		}
Example #8
0
 public XmlNode AddAuthorityURL(AuthorityURLType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "AuthorityURL", newValue);
 }