public void ReplaceContactAddressAt(ContactAddressType newValue, int index)
 {
     ReplaceDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
 public void AddContactAddress(ContactAddressType newValue)
 {
     AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue);
 }
 public void InsertContactAddressAt(ContactAddressType newValue, int index)
 {
     InsertDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
			public PostCodeEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
			public CountryEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
 public void ReplaceContactAddressAt(ContactAddressType newValue, int index)
 {
     ReplaceDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
			public StateOrProvinceEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
 public XmlNode AddContactAddress(ContactAddressType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue);
 }
 public void InsertContactAddressAt(ContactAddressType newValue, int index)
 {
     InsertDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
示例#10
0
 public CountryEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
示例#11
0
 public PostCodeEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
示例#12
0
 public StateOrProvinceEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
示例#13
0
 public XmlNode AddContactAddress(ContactAddressType newValue)
 {
     return(AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue));
 }
		public void AddContactAddress(ContactAddressType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue);
		}