WebSocket4Net icon indicating copy to clipboard operation
WebSocket4Net copied to clipboard

A popular .NET WebSocket Client

Results 113 WebSocket4Net issues
Sort by recently updated
recently updated
newest added

在WebSocket.NoSilverlight.cs的类中,查看定义为SslProtocols.Defaul,但SslProtocols.Defaul已经被标记为过时: https://docs.microsoft.com/zh-cn/dotnet/fundamentals/code-analysis/quality-rules/ca5397?view=vs-2019 经过测试,可以用以下字符串代替: (SslProtocols)192 | (SslProtocols)768 | (SslProtocols)3072 尝试过使用SslProtocols.Tls12,但如果用户电脑只安装了.net4.0,例如win7,并没有安装更高版本的.net 4.5/4.7之类的,会出现错误,所以直接用 (SslProtocols)192 | (SslProtocols)768 | (SslProtocols)3072,就不会有问题,默认也用Tls1.2连接。 经过在xp、win7、win10,测试,服务器抓取日志,一切正常。

Hello. Can you specify the license type of this project? Thank you!

Hello, kerryjiang. I facced with the situation, when I try to reconnect to server, that temporarily unavailable, with setting LocalEndPoint. I catch exception in WebSocket.OnError event: WSAEADDRINUSE(10048) Only one usage...

On Xamarin Android when attempting to open a connection when there is no internet connection causes the app to crash with a `System.NotImplementedException`. I've put this code in my `MainActivity`...

bug

This looks great! However, there are no releases and the src is mixed with countless directories with a README that says what it is, but doesn't tell me how to...

I'm not entirely sure if this is on my end, but i've tried everything and i've tested a lot to come to this conclusion. Detailing the issue: I have a...

This seems to have happened seconds after the client handled a disconnect from the server. The client had been running for about 2 hours already I didn't delve in the...

Hi. I use the library and get this exception sometimes. Is there any way to fix this? ``` 2020-05-28 18:00:51.3025 WaxpeerApp.Program.CurrentDomain_UnhandledException Fatal: CurrentDomain_UnhandledException - CrashProgramm -> System.ArgumentException: An item with...

For some reason in linux it is not connecting if you define a domain, but if you define an ip it works normally. No error is triggered and keeps connecting...

Hi, I am using WebSocket4Net 0.15.2.11, and trying to open a connection to wss://echo.wss-websocket.net. But I got the error "Authentication failed because the remote party has closed the transport stream."....