Rixl.Sdk 0.1.6

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

rixl-csharp

C# client for the RIXL API.

NuGet

Install

dotnet add package Rixl.Sdk

Targets .NET 8. Brings in Microsoft.Kiota.Bundle (HTTP transport, serializers).

Quick start

using Rixl.Sdk;
using Microsoft.Kiota.Abstractions.Authentication;
using Microsoft.Kiota.Bundle;

var auth = new ApiKeyAuthenticationProvider(
    "YOUR_RIXL_API_KEY", "X-API-Key", ApiKeyLocation.Header);
var adapter = new DefaultRequestAdapter(auth);
var client = new RixlClient(adapter);

var image = await client.Images["PS5IMKoFLm"].GetAsync();
Console.WriteLine($"{image?.Id} {image?.Width}x{image?.Height}");

Default base URL: https://api.rixl.com. Override with adapter.BaseUrl = "...".

Resources

// Feeds
var posts = await client.Feeds["FD4y3QB38S"].GetAsync();

// Images — list, get, delete
var page  = await client.Images.GetAsync();
var image = await client.Images["PS5IMKoFLm"].GetAsync();
await client.Images["PS5IMKoFLm"].DeleteAsync();

// Videos
var videos = await client.Videos.GetAsync();
var video  = await client.Videos["VI9VXQxWXQ"].GetAsync();

Upload (init → PUT bytes to presigned URL → complete) follows the same pattern as the other RIXL SDKs.

Errors

API errors (400/401/403/404/500) are thrown as Rixl.Sdk.Models.Github_com_rixlhq_api_internal_errors.ErrorResponse exceptions; catch and inspect Code / Error.

Support

Open an issue at github.com/rixlhq/rixl-csharp.

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

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.1.6 97 7/2/2026
0.1.5 97 5/7/2026
0.1.4 92 5/5/2026