ContentType property

String? ContentType
Gets or sets the content type of the attachment.

Implementation

String? get ContentType => this._contentType;
void ContentType=(String? value)

Implementation

set ContentType(String? value) {
  if (CanSetFieldValue(this._contentType, value)) {
    this._contentType = value;
    this.Changed();
  }
}