public override void Abort() { if (state == disposed) { return; } if (innerWebSocket != null) { innerWebSocket.Abort(); } Dispose(); }
public override void Abort() { if ((InternalState)_state == InternalState.Disposed) { return; } if (_innerWebSocket != null) { _innerWebSocket.Abort(); } Dispose(); }
public void Abort() { _webSocket.Abort(); }
public void Abort() { _abortSource.Cancel(); WebSocket?.Abort(); }
public override void Abort() { _webSocket.Abort(); }