InternalOnDisconnect method

void InternalOnDisconnect(
  1. Exception ex
)
helper method called when the request disconnects. The exception that caused the disconnection. May be null.

Implementation

/* private */
void InternalOnDisconnect(Exception ex) {
  throw NotImplementedException("InternalOnDisconnect");
//            this.currentHangingRequest = null;
//
//            if (this.OnDisconnect != null)
//            {
//                this.OnDisconnect(this, new SubscriptionErrorEventArgs(null, ex));
//            }
}