WebSocket4Net 1.0.0-beta.4
dotnet add package WebSocket4Net --version 1.0.0-beta.4
NuGet\Install-Package WebSocket4Net -Version 1.0.0-beta.4
<PackageReference Include="WebSocket4Net" Version="1.0.0-beta.4" />
paket add WebSocket4Net --version 1.0.0-beta.4
#r "nuget: WebSocket4Net, 1.0.0-beta.4"
// Install WebSocket4Net as a Cake Addin #addin nuget:?package=WebSocket4Net&version=1.0.0-beta.4&prerelease // Install WebSocket4Net as a Cake Tool #tool nuget:?package=WebSocket4Net&version=1.0.0-beta.4&prerelease
WebSocket4Net
A popular .NET WebSocket Client
This new version is built on SuperSocket 2.0 and modern .NET (.NET Core). It includes breaking changes from the previous WebSocket4Net version, so code adjustments may be necessary for upgrading.
Usage 1: Read messages from event handler.
using WebSocket4Net;
var websocket = new WebSocket("https://localhost/live");
websocket.PackageHandler += (sender, package) =>
{
Console.WriteLine(package.Message);
}
await websocket.OpenAsync();
websocket.StartReceive();
await websocket.SendAsync("Hello");
//...
await websocket.CloseAsync();
Usage 1: Read messages on demand.
using WebSocket4Net;
var websocket = new WebSocket("https://localhost/live");
await websocket.OpenAsync();
await websocket.SendAsync("Hello");
while (true)
{
var package = await websocket.ReceiveAsync();
if (package == null)
break;
Console.WriteLine(package.Message);
}
//...
await websocket.CloseAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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 is compatible. net7.0-android was computed. net7.0-android33.0 is compatible. net7.0-ios was computed. net7.0-ios16.1 is compatible. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-macos13.0 is compatible. net7.0-tvos was computed. net7.0-tvos16.1 is compatible. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-android34.0 is compatible. net8.0-browser was computed. net8.0-ios was computed. net8.0-ios17.5 is compatible. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-macos14.5 is compatible. net8.0-tvos was computed. net8.0-tvos17.5 is compatible. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net5.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net6.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net7.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net7.0-android33.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net7.0-ios16.1
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net7.0-macos13.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net7.0-tvos16.1
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net8.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net8.0-android34.0
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net8.0-ios17.5
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net8.0-macos14.5
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
-
net8.0-tvos17.5
- SuperSocket.Client (>= 2.0.0-beta.26)
- SuperSocket.WebSocket (>= 2.0.0-beta.26)
NuGet packages (135)
Showing the top 5 NuGet packages that depend on WebSocket4Net:
Package | Downloads |
---|---|
SlackNet
A comprehensive Slack API client for .NET |
|
SocketIoClientDotNet
This is the Socket.IO Client Library for .NET. |
|
EngineIoClientDotNet
This is the Engine.IO Client Library for C#. |
|
PusherClient
The .NET library for interacting with the Pusher WebSocket API. Register at http://pusher.com |
|
OpenfinDesktop
OpenFin Desktop Runtime .NET Adapter |
GitHub repositories (38)
Showing the top 5 popular GitHub repositories that depend on WebSocket4Net:
Repository | Stars |
---|---|
discord-net/Discord.Net
An unofficial .Net wrapper for the Discord API (https://discord.com/)
|
|
ArduPilot/MissionPlanner
Mission Planner Ground Control Station for ArduPilot (c# .net)
|
|
dotnetcore/AgileConfig
基于.NET Core开发的轻量级分布式配置中心 / .NET Core lightweight configuration server
|
|
saucepleez/taskt
taskt (pronounced 'tasked' and formely sharpRPA) is free and open-source robotic process automation (rpa) built in C# powered by the .NET Framework
|
|
Quobject/SocketIoClientDotNet
Socket.IO Client Library for .Net
|
Version | Downloads | Last updated |
---|---|---|
1.0.0-beta.4 | 387 | 8/31/2024 |
1.0.0-beta.3 | 356 | 6/29/2024 |
1.0.0-beta.2 | 150 | 6/1/2024 |
1.0.0-beta.1 | 123 | 5/25/2024 |
0.15.2 | 6,018,168 | 1/31/2018 |
0.15.1 | 2,382,568 | 11/26/2017 |
0.15.0 | 374,824 | 9/5/2017 |
0.15.0-beta9 | 133,308 | 6/8/2017 |
0.15.0-beta8 | 8,473 | 6/4/2017 |
0.15.0-beta7 | 8,258 | 5/5/2017 |
0.15.0-beta6 | 24,510 | 9/2/2016 |
0.15.0-beta5 | 58,009 | 8/24/2016 |
0.15.0-beta4 | 9,388 | 8/24/2016 |
0.15.0-beta3 | 2,165 | 8/24/2016 |
0.15.0-beta2 | 2,227 | 8/23/2016 |
0.15.0-beta1 | 2,111 | 8/22/2016 |
0.14.1 | 1,061,454 | 10/9/2015 |
0.14.0 | 15,833 | 9/22/2015 |
0.13.1 | 115,544 | 8/4/2015 |
0.13.0 | 3,523 | 8/3/2015 |
0.12.0 | 66,258 | 3/22/2015 |
0.11.0 | 29,501 | 12/22/2014 |
0.10.0 | 42,659 | 7/23/2014 |
0.9.0 | 446,363 | 4/22/2014 |
0.8.0 | 54,222 | 7/22/2012 |
0.7.0 | 17,689 | 6/15/2012 |
0.5.1 | 2,657 | 3/19/2012 |
0.4.0 | 3,467 | 2/22/2012 |