WaveLink.Client 0.0.1-alpha2

This is a prerelease version of WaveLink.Client.
dotnet add package WaveLink.Client --version 0.0.1-alpha2
                    
NuGet\Install-Package WaveLink.Client -Version 0.0.1-alpha2
                    
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="WaveLink.Client" Version="0.0.1-alpha2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WaveLink.Client" Version="0.0.1-alpha2" />
                    
Directory.Packages.props
<PackageReference Include="WaveLink.Client" />
                    
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 WaveLink.Client --version 0.0.1-alpha2
                    
#r "nuget: WaveLink.Client, 0.0.1-alpha2"
                    
#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 WaveLink.Client@0.0.1-alpha2
                    
#: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=WaveLink.Client&version=0.0.1-alpha2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=WaveLink.Client&version=0.0.1-alpha2&prerelease
                    
Install as a Cake Tool

WaveLink.Client (.NET 10 / Native AOT friendly)

A C# client for the local WebSocket JSON-RPC API exposed by Elgato Wave Link 3.x.

  • Target: .NET 10.0, C# 14
  • Serializer: System.Text.Json Source Generation (100% Native AOT & Trimming compatible)
  • Extracted features: Supports hardware DspEffects, IsGainLockOn, and advanced Channel metadata.

See PROTOCOL.md for the wire format.

Quick start

using WaveLink.Client;

var client = new WaveLinkClient();
await client.ConnectAsync();

var app = await client.GetApplicationInfoAsync();
Console.WriteLine($"{app.Name} ({app.AppId}) rev {app.InterfaceRevision}");

var inputs = await client.GetInputDevicesAsync();
var outputs = await client.GetOutputDevicesAsync();

// Subscribe to focused app + level meters
await client.SetSubscriptionAsync(new SetSubscriptionParams
{
    FocusedAppChanged = new SubscriptionToggle { IsEnabled = true },
    LevelMeterChanged = new LevelMeterSubscription { IsEnabled = true, Type = "all", Id = "all" }
});

Consuming Events

WaveLink.Client gives you two modern ways to consume real-time events.

You can use standard await foreach loops to process events asynchronously without dealing with traditional event handler memory leaks.

// Runs asynchronously in the background
_ = Task.Run(async () => 
{
    await foreach (var meters in client.StreamLevelMetersAsync(cancellationToken))
    {
        Console.WriteLine($"Meters updated. Channels={meters.Channels?.Count ?? 0}");
    }
});

_ = Task.Run(async () => 
{
    await foreach (var app in client.StreamFocusedAppChangesAsync(cancellationToken))
    {
        Console.WriteLine($"Focused App Changed: {app.Name} -> {app.Channel?.Id}");
    }
});

Option 2: Traditional .NET Events

client.FocusedAppChanged += (_, e) => Console.WriteLine($"Focused: {e.Name} -> {e.Channel?.Id}");
client.LevelMeterChanged += (_, m) => Console.WriteLine($"Meters updated.");

Notes

  • This is a reverse-engineered client based on the Stream Deck plugin behavior.
  • Unknown fields introduced by newer Wave Link updates are safely preserved inside ExtensionData dictionaries.
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 is compatible.  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.
  • net10.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.1-alpha2 34 3/4/2026