IsRead property

bool? get IsRead
Gets or sets a value indicating whether the e-mail message is read.

Implementation

bool? get IsRead => this.PropertyBag[EmailMessageSchema.IsRead] as bool?;
set IsRead (bool? value)

Implementation

set IsRead(bool? value) =>
    this.PropertyBag[EmailMessageSchema.IsRead] = value;