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);
 }
Ejemplo n.º 4
0
			public PostCodeEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
Ejemplo n.º 5
0
			public CountryEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
Ejemplo n.º 6
0
 public void ReplaceContactAddressAt(ContactAddressType newValue, int index)
 {
     ReplaceDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
Ejemplo n.º 7
0
			public StateOrProvinceEnumerator(ContactAddressType par) 
			{
				parent = par;
				nIndex = -1;
			}
Ejemplo n.º 8
0
 public XmlNode AddContactAddress(ContactAddressType newValue)
 {
     return AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue);
 }
Ejemplo n.º 9
0
 public void InsertContactAddressAt(ContactAddressType newValue, int index)
 {
     InsertDomElementAt("http://www.opengis.net/wms", "ContactAddress", index, newValue);
 }
Ejemplo n.º 10
0
 public CountryEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
Ejemplo n.º 11
0
 public PostCodeEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
Ejemplo n.º 12
0
 public StateOrProvinceEnumerator(ContactAddressType par)
 {
     parent = par;
     nIndex = -1;
 }
Ejemplo n.º 13
0
 public XmlNode AddContactAddress(ContactAddressType newValue)
 {
     return(AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue));
 }
Ejemplo n.º 14
0
		public void AddContactAddress(ContactAddressType newValue)
		{
			AppendDomElement("http://www.opengis.net/wms", "ContactAddress", newValue);
		}