IsRead property

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

Implementation

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

Implementation

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