ServiceId.fromUniqueId constructor

ServiceId.fromUniqueId(
  1. String uniqueId
)
Initializes a new instance of the The unique id.

Implementation

ServiceId.fromUniqueId(String uniqueId) : super() {
  EwsUtilities.ValidateParam(uniqueId, "uniqueId");

  this._uniqueId = uniqueId;
}