MykoSdk 1.0.17

There is a newer version of this package available.
See the version list below for details.
dotnet add package MykoSdk --version 1.0.17
                    
NuGet\Install-Package MykoSdk -Version 1.0.17
                    
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="MykoSdk" Version="1.0.17" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MykoSdk" Version="1.0.17" />
                    
Directory.Packages.props
<PackageReference Include="MykoSdk" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MykoSdk --version 1.0.17
                    
#r "nuget: MykoSdk, 1.0.17"
                    
#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.
#:package MykoSdk@1.0.17
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MykoSdk&version=1.0.17
                    
Install as a Cake Addin
#tool nuget:?package=MykoSdk&version=1.0.17
                    
Install as a Cake Tool

MykoSdk for .NET

MykoSdk is a low-level WebSocket communication library for real-time applications in the Rship ecosystem.

Features

  • Real-time WebSocket communication
  • Event-driven architecture
  • Connection status monitoring
  • Automatic reconnection handling
  • Message serialization/deserialization
  • Comprehensive logging support

Installation

dotnet add package MykoSdk

Quick Start

using MykoSdk.Client;

// Create and connect to Myko server
var client = new MykoClient();
await client.ConnectAsync("ws://localhost:8080/myko");

// Send events
var eventData = Event<MyData>.FromItem(
    new MyData { Value = "Hello" }, 
    EventType.SET, 
    Guid.NewGuid().ToString()
);
await client.SendEventAsync(eventData);

// Monitor connection status
client.ConnectionStatusChanged += (sender, status) => {
    Console.WriteLine($"Connection status: {status}");
};

Documentation

For more detailed documentation and examples, visit the Rship documentation.

License

This project is licensed under the AGPL-3.0-or-later license.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MykoSdk:

Package Downloads
RshipSdk

Rship SDK for C#/.NET - High-level SDK for building real-time applications with the Rship ecosystem. Provides instance management, action handling, emitter support, and seamless integration with the Rship platform.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.19 135 6/30/2025
1.0.18 136 6/30/2025
1.0.17 135 6/30/2025
1.0.16 146 6/30/2025
1.0.15 137 6/30/2025
1.0.14 139 6/30/2025
1.0.13 143 6/30/2025
1.0.11 64 6/27/2025
1.0.10 73 6/27/2025
1.0.9 138 6/25/2025
1.0.8 137 6/24/2025
1.0.7 141 6/24/2025
1.0.6 130 6/24/2025
1.0.5 152 6/24/2025
1.0.2 132 6/24/2025
1.0.1 139 6/24/2025
1.0.0 140 6/23/2025
0.1.6 131 6/24/2025
0.1.5 133 6/24/2025
0.1.4 133 6/24/2025
0.1.3 137 6/24/2025
0.1.2 137 6/24/2025
0.1.1 132 6/24/2025