Jc.WebSocket
1.2.14
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Jc.WebSocket --version 1.2.14
NuGet\Install-Package Jc.WebSocket -Version 1.2.14
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.2.14" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Jc.WebSocket --version 1.2.14
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Jc.WebSocket, 1.2.14"
#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.2.14 // Install Jc.WebSocket as a Cake Tool #tool nuget:?package=Jc.WebSocket&version=1.2.14
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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)
为所有连接发送消息
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在线测试工具
Upgrade content:
v1.0.4
1.Fixed Net6 Mini api compatibility
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.AspNetCore.WebSockets (>= 2.2.1)
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.21 | 80 | 11/14/2024 |
1.3.20 | 70 | 11/14/2024 |
1.3.19 | 298 | 3/15/2023 |
1.3.18 | 269 | 3/7/2023 |
1.3.17 | 359 | 11/16/2022 |
1.3.16 | 346 | 11/15/2022 |
1.2.16 | 379 | 11/12/2022 |
1.2.15 | 354 | 11/12/2022 |
1.2.14 | 364 | 11/12/2022 |
1.2.13 | 356 | 11/11/2022 |
1.2.12 | 362 | 11/9/2022 |
1.2.11 | 357 | 11/9/2022 |
1.0.11 | 491 | 9/14/2022 |
1.0.10 | 501 | 9/14/2022 |
1.0.9 | 444 | 6/14/2022 |
1.0.8 | 447 | 6/14/2022 |
1.0.7 | 446 | 5/13/2022 |
1.0.6 | 453 | 4/27/2022 |
1.0.5 | 455 | 3/19/2022 |
1.0.4 | 460 | 3/19/2022 |
1.0.3 | 475 | 3/8/2022 |
1.0.2 | 473 | 3/8/2022 |
1.0.1 | 465 | 3/8/2022 |