HangingServiceRequestBase constructor

HangingServiceRequestBase(
  1. ExchangeService service,
  2. HandleResponseObject handler,
  3. int heartbeatFrequency
)
Initializes a new instance of the The service. Callback delegate to handle response objects Frequency at which we expect heartbeats, in milliseconds.

Implementation

HangingServiceRequestBase(ExchangeService service,
    HandleResponseObject handler, int heartbeatFrequency)
    : super(service) {
  this._responseHandler = handler;
  this.heartbeatFrequencyMilliseconds = heartbeatFrequency;
}