HasAttachments property

bool? HasAttachments
Gets or sets the number of minutes before the start of this item when the reminder should be triggered. Gets a text summarizing the Cc receipients of this item. Gets a text summarizing the To recipients of this item. Gets a value indicating whether the item has attachments.

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?;