FilterHtmlContent property

bool? FilterHtmlContent
Gets or sets value indicating whether or not to filter potentially unsafe HTML content from message bodies.

Implementation

bool? get FilterHtmlContent => this._filterHtml;
void FilterHtmlContent=(bool? value)

Implementation

set FilterHtmlContent(bool? value) {
  this._ThrowIfReadonly();
  this._filterHtml = value;
}