Jc.WebSocket 1.3.19

dotnet add package Jc.WebSocket --version 1.3.19
NuGet\Install-Package Jc.WebSocket -Version 1.3.19
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jc.WebSocket" Version="1.3.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Jc.WebSocket --version 1.3.19
#r "nuget: Jc.WebSocket, 1.3.19"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Jc.WebSocket as a Cake Addin
#addin nuget:?package=Jc.WebSocket&version=1.3.19

// Install Jc.WebSocket as a Cake Tool
#tool nuget:?package=Jc.WebSocket&version=1.3.19

Jc.WebSocket

websocket中间件

JcWebSocketServer

.net core webapi Websocket服务中间件

启动方法

//启动方法
app.UseJcWebSocketServer(callBack,isrepeat);

//回调函数处理
void callBack(WebSocketState state,string token, string msg)
{
    Console.WriteLine($"state:{state.ToString()}>token:{token}>msg:{msg}");
}

客户端 连接方式:

ws://ip:port?token=your token uuid

token: 当:isrepeat=false 只能是唯一,如果有重复 将关闭上一个链接

为指定Token发送消息

JcWebSocketServer.SendText(token,text)

await JcWebSocketServer.SendTxtAsync(token, text);

为所有连接发送消息

JcWebSocketServer.SendText(text)

获取在线列表

JcWebSocketServer.GetUserList()

关闭指定Token链接

JcWebSocketServer.DisConnect(token)

JcWebSocketClient

.net core webapi Websocket客户端中间件

连接Server


//创建链接
void testWebClient()
{
   JcWebSocketClient wSocketClient = new JcWebSocketClient("ws://192.168.1.140:5010?token=2");
   wSocketClient.OnOpen -= WSocketClient_OnOpen;
   wSocketClient.OnMessage -= WSocketClient_OnMessage;
   wSocketClient.OnClose -= WSocketClient_OnClose;
   wSocketClient.OnError -= WSocketClient_OnError;

   wSocketClient.OnOpen += WSocketClient_OnOpen;
   wSocketClient.OnMessage += WSocketClient_OnMessage;
   wSocketClient.OnClose += WSocketClient_OnClose;
   wSocketClient.OnError += WSocketClient_OnError;
   wSocketClient.Open();

   wSocketClient.Send("info");
}


 void WSocketClient_OnError(object sender, Exception ex)
{

}

 void WSocketClient_OnClose(object sender, EventArgs e)
{

}

 void WSocketClient_OnMessage(object sender, string data)
{
   Console.WriteLine(data);
}

 void WSocketClient_OnOpen(object sender, EventArgs e)
{

}

WebSocket在线测试工具

http://websocket-test.cn

Upgrade content:

v1.0.4

1.Fixed Net6 Mini api compatibility

v1.3.16

1.修复SendTxt 返回状态

v1.3.18

https://zhuanlan.zhihu.com/p/338772340

修复 问题

One or more errors occurred. (The remote party closed the WebSocket connection without completing the close handshake.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.19 262 3/15/2023
1.3.18 234 3/7/2023
1.3.17 328 11/16/2022
1.3.16 316 11/15/2022
1.2.16 343 11/12/2022
1.2.15 324 11/12/2022
1.2.14 331 11/12/2022
1.2.13 339 11/11/2022
1.2.12 328 11/9/2022
1.2.11 342 11/9/2022
1.0.11 459 9/14/2022
1.0.10 462 9/14/2022
1.0.9 430 6/14/2022
1.0.8 411 6/14/2022
1.0.7 432 5/13/2022
1.0.6 422 4/27/2022
1.0.5 417 3/19/2022
1.0.4 432 3/19/2022
1.0.3 448 3/8/2022
1.0.2 441 3/8/2022
1.0.1 435 3/8/2022