ContentLocation property

String? ContentLocation
Gets or sets the content location of the attachment. ContentLocation can be used to associate an attachment with a Url defining its location on the Web.

Implementation

String? get ContentLocation => this._contentLocation;
void ContentLocation=(String? value)

Implementation

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