Close method

void Close()
Closes this connection so it stops receiving events from the server. This terminates a long-standing call to EWS.

Implementation

void Close() {
  throw NotImplementedException("Close");
//            lock (this.lockObject)
//            {
//                this.ThrowIfDisposed();
//
//                this.ValidateConnectionState(true, "Strings.CannotCallDisconnectWithNoLiveConnection");
//
//                // Further down in the stack, this will result in a call to our OnRequestDisconnect event handler,
//                // doing the necessary cleanup.
//                this.currentHangingRequest.Disconnect();
//            }
}