BaseOffset property

TimeSpan? BaseOffset
Gets or sets the base offset of the time zone from the UTC time zone.

Implementation

TimeSpan? get BaseOffset => this._baseOffset;
void BaseOffset=(TimeSpan? value)

Implementation

set BaseOffset(TimeSpan? value) {
  if (this.CanSetFieldValue(this._baseOffset, value)) {
    this._baseOffset = value;
    this.Changed();
  }
}