示例#1
0
 /// <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));
 }
示例#2
0
 /// <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));
 }
示例#3
0
 /// <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));
 }