IsOpen property

bool? get IsOpen
Gets a value indicating whether this connection is opened

Implementation

bool? get IsOpen {
  this.ThrowIfDisposed();
  if (this._currentHangingRequest == null) {
    return false;
  } else {
    return this._currentHangingRequest!.IsConnected;
  }
}