ErrorMessage property

String? ErrorMessage
Gets a detailed error message associated with the response. If Result is set to Success, ErrorMessage returns null. ErrorMessage is localized according to the PreferredCulture property of the ExchangeService object that was used to call the method that generated the response.

Implementation

String? get ErrorMessage => this._errorMessage;
void ErrorMessage=(String? value)

Implementation

set ErrorMessage(String? value) {
  this._errorMessage = value;
}