AttachmentLongPathName property

String? AttachmentLongPathName
Gets or sets a fully-qualified path identifying the attachment.

Implementation

String? get AttachmentLongPathName => this._attachLongPathName;
void AttachmentLongPathName=(String? value)

Implementation

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