WebSocket4Net 1.0.0-beta.4

This is a prerelease version of WebSocket4Net.
dotnet add package WebSocket4Net --version 1.0.0-beta.4                
NuGet\Install-Package WebSocket4Net -Version 1.0.0-beta.4                
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="WebSocket4Net" Version="1.0.0-beta.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebSocket4Net --version 1.0.0-beta.4                
#r "nuget: WebSocket4Net, 1.0.0-beta.4"                
#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 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

build MyGet Version NuGet Beta Version NuGet Version NuGet Badge

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 217 8/31/2024
1.0.0-beta.3 342 6/29/2024
1.0.0-beta.2 146 6/1/2024
1.0.0-beta.1 112 5/25/2024
0.15.2 5,916,222 1/31/2018
0.15.1 2,233,033 11/26/2017
0.15.0 372,456 9/5/2017
0.15.0-beta9 132,266 6/8/2017
0.15.0-beta8 8,467 6/4/2017
0.15.0-beta7 7,883 5/5/2017
0.15.0-beta6 24,243 9/2/2016
0.15.0-beta5 57,934 8/24/2016
0.15.0-beta4 9,376 8/24/2016
0.15.0-beta3 2,161 8/24/2016
0.15.0-beta2 2,219 8/23/2016
0.15.0-beta1 2,106 8/22/2016
0.14.1 1,046,138 10/9/2015
0.14.0 15,807 9/22/2015
0.13.1 115,042 8/4/2015
0.13.0 3,514 8/3/2015
0.12.0 66,231 3/22/2015
0.11.0 29,210 12/22/2014
0.10.0 42,603 7/23/2014
0.9.0 446,240 4/22/2014
0.8.0 54,163 7/22/2012
0.7.0 16,940 6/15/2012
0.5.1 2,652 3/19/2012
0.4.0 3,410 2/22/2012