CoolWebSocketClient 1.0.1
dotnet add package CoolWebSocketClient --version 1.0.1
NuGet\Install-Package CoolWebSocketClient -Version 1.0.1
<PackageReference Include="CoolWebSocketClient" Version="1.0.1" />
paket add CoolWebSocketClient --version 1.0.1
#r "nuget: CoolWebSocketClient, 1.0.1"
// Install CoolWebSocketClient as a Cake Addin #addin nuget:?package=CoolWebSocketClient&version=1.0.1 // Install CoolWebSocketClient as a Cake Tool #tool nuget:?package=CoolWebSocketClient&version=1.0.1
CoolWebSocketClient
CoolWebSocket is a 0 bullshit and straightforward ClientWebSocket wrapper that aims at making WebSockets easy and friendly to use, whilst getting the advantages from ClientWebSocket.
It is lightweight and simple and does not rely on any extra libraries. The codebase actually fits in one file.
Installation
You can install via the nuget package or via the following command:
dotnet add package CoolWebSocketClient
Usage
Basic usage
var ws = new CoolWebSocket();
await ws.Open(new Uri("wss://echo.websocket.org"));
// when connected
ws.OnOpen += () =>
{
Console.WriteLine("Connected to server");
};
// when a message is received, use messagetype to check if its binary or a text
// and use ReadString() to parse if it is the case.
ws.OnMessage += (messageType, message) =>
{
Console.WriteLine("Received the following message: " + ws.ReadString(message));
};
// when disconnected or kicked
ws.OnClose += (closeStatus, closeMessage) => {
Console.WriteLine($"Disconnected from server ({closeStatus}): {closeMessage}");
};
// send a string message, binary messages can also be sent
await ws.Send("Hello world!");
...
// close the websocket when done and disconnect (you can also specify a code and reason)
await ws.Close();
Changing options (headers, security and more)
// ClientWebSocket options are available here
ws.Options...
// example
ws.Options.SetRequestHeader("x-hello-world", "coolwebsocketclient");
Extra
🚀 If you have an issue or idea, let me know in the Issues section.
☕ Want to support me? You can send me a coffee on ko.fi: https://ko-fi.com/coloride.
(real)coloride - 2024, Licensed MIT.
Product | Versions 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 | 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
- Microsoft.CSharp (>= 4.7.0)
- System.Net.WebSockets (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Handle exceptions when disconnected abruptly while polling