AttachmentIsFolder property

bool? AttachmentIsFolder
Gets or sets a value indicating whether the attachment points to a folder.

Implementation

bool? get AttachmentIsFolder => this._attachmentIsFolder;
void AttachmentIsFolder=(bool? value)

Implementation

set AttachmentIsFolder(bool? value) {
  if (this.CanSetFieldValue(this._attachmentIsFolder, value)) {
    this._attachmentIsFolder = value;
    this.Changed();
  }
}