Isoftforge.Apps.Client.Storage 1.0.3

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

Isoftforge.Apps.Client.Storage

.NET client for the isoftforge Storage satellite S3 API.

Configuration

var client = StorageClient.Create(
    baseUrl: "https://apps-api.isoftforge.it/api/storage",
    apiKey: "ifc_your-upload-credential-key");

Or with dependency injection:

services.AddStorageClient(configuration.GetSection("Storage"));
{
  "Storage": {
    "BaseUrl": "https://apps-api.isoftforge.it/api/storage",
    "ApiKey": "ifc_your-upload-credential-key"
  }
}
  • BaseUrl — hub (https://apps-api.isoftforge.it/api/storage) or dedicated host (https://s3.isoftforge.it/api)
  • ApiKey — upload credential access key from Storage → Admin → Credentials. Environment and upload policy are resolved from the key.

Usage

var validation = await client.ValidateCredentialsAsync();
if (!validation.Valid) throw new InvalidOperationException(validation.Error);

await using var stream = File.OpenRead("report.pdf");
var upload = await client.UploadObjectAsync("reports/report.pdf", stream, "report.pdf");

Console.WriteLine(upload.ShareableUrl);

var objects = await client.ListObjectsAsync(limit: 50);
foreach (var item in objects)
    Console.WriteLine(client.GetShareableLink(item).Url);
  • Public objectshttps://s3.example.com/api/s3/public/{slug}/{objectKey}
  • Private objectshttps://s3.example.com/api/s3/access/{slug}/{objectKey}?apiKey=...

The client builds these URLs after upload or from listed objects. Private links include the API key in the query string (same as the REST API).

Authentication

Every S3 request sends X-API-Key with the upload credential access key. Uploads use the credential tied to that key unless you pass uploadCredentialUid to UploadObjectAsync or header X-Storage-Credential manually.

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 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
1.0.3 326 7/7/2026
1.0.1 110 7/7/2026
1.0.0 109 7/7/2026