DKNet.Svc.BlobStorage.Abstractions 10.1.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package DKNet.Svc.BlobStorage.Abstractions --version 10.1.13
                    
NuGet\Install-Package DKNet.Svc.BlobStorage.Abstractions -Version 10.1.13
                    
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="DKNet.Svc.BlobStorage.Abstractions" Version="10.1.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DKNet.Svc.BlobStorage.Abstractions" Version="10.1.13" />
                    
Directory.Packages.props
<PackageReference Include="DKNet.Svc.BlobStorage.Abstractions" />
                    
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 DKNet.Svc.BlobStorage.Abstractions --version 10.1.13
                    
#r "nuget: DKNet.Svc.BlobStorage.Abstractions, 10.1.13"
                    
#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 DKNet.Svc.BlobStorage.Abstractions@10.1.13
                    
#: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=DKNet.Svc.BlobStorage.Abstractions&version=10.1.13
                    
Install as a Cake Addin
#tool nuget:?package=DKNet.Svc.BlobStorage.Abstractions&version=10.1.13
                    
Install as a Cake Tool

DKNet.Svc.BlobStorage.Abstractions

NuGet NuGet Downloads .NET License

Provider-agnostic contract for blob storage: the IBlobService interface, shared request/result models, and file validation options. Pair it with one provider package (AWS S3, Azure Storage, or Local) to get a working implementation.

Features

  • IBlobService — save, get, list, delete, check existence, and generate public URLs, uniformly across providers
  • BlobData/BlobResult/BlobDataResult — strongly-typed request/result records built on BinaryData
  • BlobServiceOptions — opt-in file name length, file size, and extension validation shared by every provider
  • Automatic content-type detection from file extension

Installation

dotnet add package DKNet.Svc.BlobStorage.Abstractions

Quick Start

using DKNet.Svc.BlobStorage.Abstractions;

public sealed class DocumentService(IBlobService blobService)
{
    public Task<string> UploadAsync(string fileName, Stream content, CancellationToken ct) =>
        blobService.SaveAsync(new BlobDetails.BlobData(fileName, BinaryData.FromStream(content)), ct);
}

Register a concrete provider (e.g. services.AddLocalDirectoryBlobService(configuration) from DKNet.Svc.BlobStorage.Local) to supply the IBlobService implementation.

Documentation

Full feature reference, configuration, and gotchas: https://github.com/baoduy/DKNet/blob/dev/docs/Services/DKNet.Svc.BlobStorage.Abstractions.md

Product Compatible and additional computed target framework versions.
.NET 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.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on DKNet.Svc.BlobStorage.Abstractions:

Package Downloads
DKNet.Svc.BlobStorage.Local

DKNet is an enterprise-grade .NET library collection focused on advanced EF Core extensions, dynamic predicate building, and the Specification pattern. It provides production-ready tools for building robust, type-safe, and testable data access layers, including dynamic LINQ support, LinqKit integration. Designed for modern cloud-native applications, DKNet enforces strict code quality, async best practices, and full documentation for all public APIs. Enterprise-grade .NET library suite for modern application development, featuring advanced EF Core extensions (dynamic predicates, specifications, LinqKit), robust Domain-Driven Design (DDD) patterns, and domain event support. DKNet empowers scalable, maintainable, and testable solutions with type-safe validation, async/await, XML documentation, and high code quality standards. Ideal for cloud-native, microservices, and enterprise architectures.

DKNet.Svc.BlobStorage.AwsS3

DKNet is an enterprise-grade .NET library collection focused on advanced EF Core extensions, dynamic predicate building, and the Specification pattern. It provides production-ready tools for building robust, type-safe, and testable data access layers, including dynamic LINQ support, LinqKit integration. Designed for modern cloud-native applications, DKNet enforces strict code quality, async best practices, and full documentation for all public APIs. Enterprise-grade .NET library suite for modern application development, featuring advanced EF Core extensions (dynamic predicates, specifications, LinqKit), robust Domain-Driven Design (DDD) patterns, and domain event support. DKNet empowers scalable, maintainable, and testable solutions with type-safe validation, async/await, XML documentation, and high code quality standards. Ideal for cloud-native, microservices, and enterprise architectures.

DKNet.Svc.BlobStorage.AzureStorage

DKNet is an enterprise-grade .NET library collection focused on advanced EF Core extensions, dynamic predicate building, and the Specification pattern. It provides production-ready tools for building robust, type-safe, and testable data access layers, including dynamic LINQ support, LinqKit integration. Designed for modern cloud-native applications, DKNet enforces strict code quality, async best practices, and full documentation for all public APIs. Enterprise-grade .NET library suite for modern application development, featuring advanced EF Core extensions (dynamic predicates, specifications, LinqKit), robust Domain-Driven Design (DDD) patterns, and domain event support. DKNet empowers scalable, maintainable, and testable solutions with type-safe validation, async/await, XML documentation, and high code quality standards. Ideal for cloud-native, microservices, and enterprise architectures.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.1.19 44 9/3/2026
10.1.18 46 9/3/2026
10.1.17 54 9/3/2026
10.1.16 44 9/3/2026
10.1.15 132 9/1/2026
10.1.14 88 9/1/2026
10.1.13 106 8/31/2026
10.1.12 117 8/25/2026
10.1.11 123 8/24/2026
10.1.10 129 8/22/2026
10.1.9 131 8/22/2026
10.1.8 124 8/21/2026
10.1.7 124 8/21/2026
10.1.6 127 8/21/2026
10.1.5 194 8/20/2026
10.1.4 122 8/20/2026
10.1.3 138 8/19/2026
10.1.2 135 8/19/2026
10.1.1 117 8/19/2026
10.0.36 115 8/18/2026
Loading failed