Open method

void Open()
Opens this connection so it starts receiving events from the server. This results in a long-standing call to EWS.

Implementation

void Open() {
  throw NotImplementedException("Open");
//            lock (this.lockObject)
//            {
//                this.ThrowIfDisposed();
//
//                this.ValidateConnectionState(false, "Strings.CannotCallConnectDuringLiveConnection");
//
//                if (this.subscriptions.length == 0)
//                {
//                    throw new ServiceLocalException("Strings.NoSubscriptionsOnConnection");
//                }
//
//                this.currentHangingRequest = new GetStreamingEventsRequest(
//                    this.session,
//                    this.HandleServiceResponseObject,
//                    this.subscriptions.Keys,
//                    this.connectionTimeout);
//
//                this.currentHangingRequest.OnDisconnect += new HangingServiceRequestBase.HangingRequestDisconnectHandler(this.OnRequestDisconnect);
//
//                this.currentHangingRequest.InternalExecute();
//            }
}