websocket-client icon indicating copy to clipboard operation
websocket-client copied to clipboard

πŸ”§ .NET/C# websocket client library

Results 64 websocket-client issues
Sort by recently updated
recently updated
newest added

let's say ln ln 421 throws an Exception ```cs result = await client.ReceiveAsync(buffer, token); ``` it will be catched on ln549 ```cs Logger.Error(e, L($"Error while listening to websocket stream, error:...

Hello, im trying to create a websocket and make a connection to remote server but there is something i dont get. the code that im using is `var url =...

Resolves #46, Replaced removed LibLock reference and added ILogger to ctors. If ILogger passed to ctor is null static ILoggerFactory instance is used to create logger. Be default i think...

breaking change
v5 release

Hello, i have a chatting app which works fine on windows 10 but when i try it on windows 7, it says "the websocket protocol is not supported on this...

I have written some code based on the samples provided. It connects to a websocket for a fixed amount of time and then closes the connection and reopens it. Every...

Hi, I have an issue with constant disconnection and reconnection from wss server, every time it reconnects it disconnects immediately. This is the code (.netCore hosted service): ```cs public async...

I'm trying to run websocket.client in powershell but unable to load assembly. When I run this line in powershell 5.1 on Windows Server 2019, I get: `Add-Type -Path .\Websocket.Client.dll` Add-Type...

When using the method Subscribe(Action onNext, Action onError) on the websocket, why is it that when onNext throw exception, onError is never called? When is onError called and used?

I receive `[WEBSOCKET] Failed to initialize logger, disabling.. Error: System.NullReferenceException: Object reference not set to an instance of an object. blazor.webassembly.js:1 at Websocket.Client.Logging.LogProvider.GetCurrentClassLogger () blazor.webassembly.js:1 at Websocket.Client.WebsocketClient.GetLogger ()`

Hello: I need some code sample on how to detect WebSocket (wss) requests. Basically, I can visit this URL with Chrome: https://www.websocket.org/echo.html And click on β€œConnect” button to connect with...