IsFolderContact property

bool? IsFolderContact
Gets or sets a value indicating whether the user is a contact for the folder.

Implementation

bool? get IsFolderContact => this._isFolderContact;
void IsFolderContact=(bool? value)

Implementation

set IsFolderContact(bool? value) {
  if (this.CanSetFieldValue(this._isFolderContact, value)) {
    this._isFolderContact = value;
    this.Changed();
  }
  this._AdjustPermissionLevel();
}