Fusio.SDK
6.1.0
dotnet add package Fusio.SDK --version 6.1.0
NuGet\Install-Package Fusio.SDK -Version 6.1.0
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="Fusio.SDK" Version="6.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fusio.SDK" Version="6.1.0" />
<PackageReference Include="Fusio.SDK" />
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 Fusio.SDK --version 6.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Fusio.SDK, 6.1.0"
#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 Fusio.SDK@6.1.0
#: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=Fusio.SDK&version=6.1.0
#tool nuget:?package=Fusio.SDK&version=6.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Fusio CSharp SDK
This is the official Fusio C# SDK, it helps to talk to the Fusio REST API. Fusio is an open source API management system, more information at: https://www.fusio-project.org
Usage
The following example shows how you can get all registered routes at the backend. A working example is also available at: https://github.com/apioo/fusio-sample-csharp-cli
using Fusio.SDK;
using Sdkgen.Client;
using Sdkgen.Client.Credentials;
using Sdkgen.Client.TokenStore;
List<string> scopes = new() {"backend"};
ITokenStore tokenStore = new MemoryTokenStore();
ICredentials credentials = new OAuth2("test", "FRsNh1zKCXlB", "https://demo.fusio-project.org/authorization/token", "", tokenStore, scopes);
Client client = new("https://demo.fusio-project.org", credentials);
try
{
BackendOperationCollection collection = await client.Backend().Operation().GetAll(0, 16, "");
Console.WriteLine("Operations:");
for (int i = 0; i < collection.Entry?.Count; i++)
{
Console.WriteLine("* " + collection.Entry[i].HttpMethod + " " + collection.Entry[i].HttpPath);
}
}
catch (CommonMessageException e)
{
Console.WriteLine("Error: " + e.Payload.Message);
}
| Product | Versions 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.
-
net8.0
- Sdkgen.Client (>= 2.0.1)
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 |
|---|---|---|
| 6.1.0 | 173 | 10/9/2025 |
| 6.0.0 | 83 | 8/1/2025 |
| 5.1.17 | 145 | 4/26/2025 |
| 5.1.16 | 130 | 3/29/2025 |
| 5.1.15 | 252 | 3/4/2025 |
| 5.1.14 | 164 | 2/28/2025 |
| 5.1.13 | 140 | 2/22/2025 |
| 5.1.12 | 145 | 2/16/2025 |
| 5.1.10 | 170 | 11/9/2024 |
| 5.1.8 | 105 | 8/3/2024 |
| 5.1.7 | 123 | 7/28/2024 |
| 5.1.6 | 131 | 7/28/2024 |
| 5.1.5 | 128 | 7/27/2024 |
| 5.1.4 | 130 | 7/25/2024 |
| 5.1.3 | 167 | 7/13/2024 |
| 5.1.2 | 151 | 6/16/2024 |
| 5.1.1 | 166 | 6/14/2024 |
| 5.1.0 | 160 | 6/10/2024 |
| 5.0.9 | 154 | 5/25/2024 |
| 5.0.8 | 152 | 5/25/2024 |
| 5.0.7 | 181 | 4/14/2024 |
| 5.0.6 | 170 | 4/10/2024 |
| 5.0.5 | 154 | 4/7/2024 |
| 5.0.4 | 154 | 4/6/2024 |
| 5.0.3 | 143 | 4/6/2024 |
| 5.0.2 | 187 | 3/31/2024 |
| 5.0.1 | 156 | 3/29/2024 |
| 5.0.0 | 167 | 3/28/2024 |