public void ReplaceContactVoiceTelephoneAt(ContactVoiceTelephoneType newValue, int index)
 {
     ReplaceDomElementAt("", "ContactVoiceTelephone", index, newValue);
 }
 public void InsertContactVoiceTelephoneAt(ContactVoiceTelephoneType newValue, int index)
 {
     InsertDomElementAt("", "ContactVoiceTelephone", index, newValue);
 }
 public XmlNode AddContactVoiceTelephone(ContactVoiceTelephoneType newValue)
 {
     return AppendDomElement("", "ContactVoiceTelephone", newValue);
 }
Example #4
0
 public void ReplaceContactVoiceTelephoneAt(ContactVoiceTelephoneType newValue, int index)
 {
     ReplaceDomElementAt("", "ContactVoiceTelephone", index, newValue);
 }
Example #5
0
 public void InsertContactVoiceTelephoneAt(ContactVoiceTelephoneType newValue, int index)
 {
     InsertDomElementAt("", "ContactVoiceTelephone", index, newValue);
 }
Example #6
0
 public XmlNode AddContactVoiceTelephone(ContactVoiceTelephoneType newValue)
 {
     return(AppendDomElement("", "ContactVoiceTelephone", newValue));
 }