WebSocketDotNet 1.0.0
dotnet add package WebSocketDotNet --version 1.0.0
NuGet\Install-Package WebSocketDotNet -Version 1.0.0
<PackageReference Include="WebSocketDotNet" Version="1.0.0" />
paket add WebSocketDotNet --version 1.0.0
#r "nuget: WebSocketDotNet, 1.0.0"
// Install WebSocketDotNet as a Cake Addin #addin nuget:?package=WebSocketDotNet&version=1.0.0 // Install WebSocketDotNet as a Cake Tool #tool nuget:?package=WebSocketDotNet&version=1.0.0
WebSocketDotNet is a .NET library for WebSockets. Compared to similar libraries, the main advantage is that it works
on more versions of .NET, from .NET Framework 3.5 to .NET 6.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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 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 | net35 is compatible. net40 was computed. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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. |
-
.NETFramework 3.5
- IndexRange (>= 1.0.2)
-
.NETFramework 4.5
- IndexRange (>= 1.0.2)
- System.Memory (>= 4.5.5)
-
.NETStandard 2.0
- IndexRange (>= 1.0.2)
- System.Memory (>= 4.5.5)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.1
- IndexRange (>= 1.0.2)
- System.Memory (>= 4.5.5)
-
net6.0
- IndexRange (>= 1.0.2)
- System.Memory (>= 4.5.5)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WebSocketDotNet:
Package | Downloads |
---|---|
bHapticsLib
An Open-Source .NET Library for bHaptics Support. Supports .NET Framework 3.5 through .NET 6 and beyond. |
GitHub repositories
This package is not used by any popular GitHub repositories.
v1.0.0
- Moved configuration of Websocket options to a new WebSocketConfiguration struct and added a new constructor which takes it.
- The old constructor is still available but marked as Obsolete.
- Added the ability to specify the websocket chunking mode (default, and previous behavior, is to chunk so that the length of a packet is always less than 65536 bytes)
- Fixed invalid data being generated, causing a disconnect, when messages > 65535 bytes were sent.
v0.5.5
- Hard reset the underlying TCP client when reconnecting.
v0.5.4
- Attempt to fix reconnection behavior
v0.5.3
- Fixed some edge cases in error handling
v0.5.2
- Better and unified error handling, especially when closing the connection
- Code cleanup
v0.5.1
- Build nuget package deterministically
v0.5.0
- Initial release