HasAttachments property
bool?
get
HasAttachments
Implementation
// int ReminderMinutesBeforeStart
// {
// get { return (int)this.PropertyBag[ItemSchema.ReminderMinutesBeforeStart]; }
// set { this.PropertyBag[ItemSchema.ReminderMinutesBeforeStart] = value; }
// }
/// <summary>
/// Gets a text summarizing the Cc receipients of this item.
/// </summary>
// String get DisplayCc => this.PropertyBag[ItemSchema.DisplayCc];
/// <summary>
/// Gets a text summarizing the To recipients of this item.
/// </summary>
// String get DisplayTo => this.PropertyBag[ItemSchema.DisplayTo];
/// <summary>
/// Gets a value indicating whether the item has attachments.
/// </summary>
bool? get HasAttachments =>
this.PropertyBag[ItemSchema.HasAttachments] as bool?;