DisconnectWithException method
Implementation
void DisconnectWithException(
HangingRequestDisconnectReason reason, Exception? exception) {
if (this.IsConnected!) {
this._response.Close();
this._InternalOnDisconnect(reason, exception);
}
}