SubscriptionBase.withIdAndWatermark constructor

SubscriptionBase.withIdAndWatermark(
  1. ExchangeService _service,
  2. String id,
  3. String watermark
)
Initializes a new instance of the The service. The id. The watermark.

Implementation

SubscriptionBase.withIdAndWatermark(
    this._service, String id, String watermark) {
  EwsUtilities.ValidateParam(id, "id");

  this._id = id;
  this._watermark = watermark;
}