SwiftBindings.Apple.MatterSupport 26.2.6

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

SwiftBindings.Apple.MatterSupport

Native .NET bindings for Apple's MatterSupport framework — the Swift-level MatterAddDeviceRequest flow that drives Apple's system commissioning UI for Matter accessories.

📖 Full usage guide → — Swift→C# naming, the add-device request flow, device criteria, and the cross-module Matter.MTRSetupPayload reference.

MatterAddDeviceRequest.setupPayload returns Matter.MTRSetupPayload, so this package takes a NuGet dependency on SwiftBindings.Apple.Matter. dotnet add package SwiftBindings.Apple.MatterSupport pulls both in.

Installation

dotnet add package SwiftBindings.Apple.MatterSupport

Requirements

  • .NET 10.0+
  • iOS 16.1+ / macOS 13.3+ / Mac Catalyst 16.4+ (MatterAddDeviceRequest.isSupported requires iOS 17+)
  • A Matter entitlement on the consuming app and the corresponding com.apple.developer.matter.allow-setup-payload capability

Usage

using Matter;
using MatterSupport;

using var payload = new MTRSetupPayload("MT:U9VJ0OMV172PX813000");
using var home = new MatterAddDeviceRequest.Home("Living Room");
using var topology = new MatterAddDeviceRequest.TopologyType("My Ecosystem", new[] { home });
using var request = new MatterAddDeviceRequest(topology, setupPayload: payload);
await request.PerformAsync();

The MatterAddDeviceRequest.perform() flow drives Apple's system UI for adding a Matter accessory; it can only be invoked on a real device with HomeKit configured. The bindings expose the same shape as Swift — see MatterAddDeviceRequest for the field-level reference.

Documentation

How It Works

These bindings are auto-generated by Swift Dotnet Bindings using .NET 10's native Swift interop via the SwiftBindings SDK. The cross-module Matter.MTRSetupPayload reference is satisfied by the sibling SwiftBindings.Apple.Matter package.

License

The bindings are MIT licensed. MatterSupport is part of the Apple SDK; refer to Apple's licensing for the underlying framework.

Product Compatible and additional computed target framework versions.
.NET net10.0-ios26.2 is compatible.  net10.0-maccatalyst26.2 is compatible.  net10.0-macos26.2 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
26.2.6 44 6/11/2026
26.2.5 102 6/1/2026
26.2.3 110 5/19/2026