TargetServerVersion property

String? TargetServerVersion
Gets or sets the target server version string (newer than Exchange2013).

Implementation

String? get TargetServerVersion => this._targetServerVersion;
void TargetServerVersion=(String? value)

Implementation

set TargetServerVersion(String? value) {
  ExchangeService.ValidateTargetVersion(value);
  this._targetServerVersion = value;
}