DisplayName property

String? DisplayName
Gets or sets the display name of the user.

Implementation

String? get DisplayName => this._displayName;
void DisplayName=(String? value)

Implementation

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