IsResponseRequested property

bool? IsResponseRequested
Gets or sets a value indicating whether a response is requested for the e-mail message.

Implementation

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

Implementation

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