/// <summary> /// Checks whether the sync error category is set for an item /// </summary> /// <param name="item">The appointment item</param> /// <returns>True if the category is set</returns> public static bool IsSyncErrorSet(this AppointmentItem item) { return(item.IsCategorySet(AppointmentState.SyncError.Name)); }
/// <summary> /// Checks whether the synchronized category is set for an item /// </summary> /// <param name="item">The appointment item</param> /// <returns>True if the category is set</returns> public static bool IsSynchronizedSet(this AppointmentItem item) { return(item.IsCategorySet(AppointmentState.Synchronized.Name)); }
/// <summary> /// Checks whether the modified category is set for an item /// </summary> /// <param name="item">The appointment item</param> /// <returns>True if the category is set</returns> public static bool IsModifiedSet(this AppointmentItem item) { return(item.IsCategorySet(AppointmentState.Modified.Name)); }