/// <summary>
 /// Deletes the values of the given standard contact field for all contacts.
 /// </summary>
 /// <param name="field"></param>
 public void DeleteStandardFieldValues(StandardFieldName field)
 {
     Delete("contacts/fields/standard/" + HttpUtility.UrlEncode(MaileonEnums.ToXmlString(field)) + "/values");
 }
Example #2
0
 public StandardField(StandardFieldName name, string value)
 {
     this.Name  = name;
     this.Value = value;
 }
Example #3
0
 public FieldBackupInstruction(StandardFieldName name) : this(Enum.GetName(typeof(StandardFieldName), name).ToUpper(), FieldType.Standard, null)
 {
 }