ContentId property

String? ContentId
Gets or sets the content Id of the attachment. ContentId can be used as a custom way to identify an attachment in order to reference it from within the body of the item the attachment belongs to.

Implementation

String? get ContentId => this._contentId;
void ContentId=(String? value)

Implementation

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