Rystem.Content.Infrastructure.Storage.File 9.0.30

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

What is Rystem?

Integration with Azure File Storage and Content Repository

await services
    .AddContentRepository()
    .WithFileStorageIntegrationAsync(x =>
    {
        x.ShareName = "supertest";
        x.Prefix = "site/";
        x.ConnectionString = configuration["ConnectionString:Storage"];
    },
    "filestorage")
    .NoContext();

How to use in a business class

public class AllStorageTest
{
    private readonly IContentRepositoryFactory _contentRepositoryFactory;
    private readonly Utility _utility;
    public AllStorageTest(IContentRepositoryFactory contentRepositoryFactory, Utility utility)
    {
        _contentRepositoryFactory = contentRepositoryFactory;
        _utility = utility;
    }
    
    public async Task ExecuteAsync()
    {
        var _contentRepository = _contentRepositoryFactory.Create("filestorage");
        var file = await _utility.GetFileAsync();
        var name = "folder/file.png";
        var contentType = "images/png";
        var metadata = new Dictionary<string, string>()
        {
            { "name", "ale" }
        };
        var tags = new Dictionary<string, string>()
        {
            { "version", "1" }
        };
        var response = await _contentRepository.ExistAsync(name).NoContext();
        if (response)
        {
            await _contentRepository.DeleteAsync(name).NoContext();
            response = await _contentRepository.ExistAsync(name).NoContext();
        }
        Assert.False(response);
        response = await _contentRepository.UploadAsync(name, file.ToArray(), new ContentRepositoryOptions
        {
            HttpHeaders = new ContentRepositoryHttpHeaders
            {
                ContentType = contentType
            },
            Metadata = metadata,
            Tags = tags
        }, true).NoContext();
        Assert.True(response);
        response = await _contentRepository.ExistAsync(name).NoContext();
        Assert.True(response);
        var options = await _contentRepository.GetPropertiesAsync(name, ContentInformationType.All).NoContext();
        Assert.NotNull(options.Uri);
        foreach (var x in metadata)
        {
            Assert.Equal(x.Value, options.Options.Metadata[x.Key]);
        }
        foreach (var x in tags)
        {
            Assert.Equal(x.Value, options.Options.Tags[x.Key]);
        }
        Assert.Equal(contentType, options.Options.HttpHeaders.ContentType);
        metadata.Add("ale2", "single");
        response = await _contentRepository.SetPropertiesAsync(name, new ContentRepositoryOptions
        {
            HttpHeaders = new ContentRepositoryHttpHeaders
            {
                ContentType = contentType
            },
            Metadata = metadata,
            Tags = tags
        }).NoContext();
        Assert.True(response);
        options = await _contentRepository.GetPropertiesAsync(name, ContentInformationType.All).NoContext();
        Assert.Equal("single", options.Options.Metadata["ale2"]);
        response = await _contentRepository.DeleteAsync(name).NoContext();
        Assert.True(response);
        response = await _contentRepository.ExistAsync(name).NoContext();
        Assert.False(response);
    }
}
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. 
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
9.0.31 115 4/2/2025
9.0.30 28,633 3/26/2025
9.0.29 8,898 3/18/2025
9.0.28 133 3/17/2025
9.0.27 137 3/16/2025
9.0.26 136 3/13/2025
9.0.25 52,009 3/9/2025
9.0.21 198 3/6/2025
9.0.20 19,487 3/6/2025
9.0.19 197 3/6/2025
9.0.18 197 3/4/2025
9.0.17 87 3/1/2025
9.0.16 88 3/1/2025
9.0.15 75,433 2/22/2025
9.0.14 22,476 2/18/2025
9.0.13 112 2/9/2025
9.0.12 217,556 1/13/2025
9.0.11 23,937 1/9/2025
9.0.10 76 1/9/2025
9.0.9 3,959 1/7/2025
9.0.8 12,441 1/6/2025
9.0.7 97 1/6/2025
9.0.4 92,224 12/23/2024
9.0.3 93 12/22/2024
9.0.2 10,633 12/21/2024
9.0.1 1,133 12/21/2024
9.0.0 172,968 11/16/2024
9.0.0-rc.1 89 10/18/2024
6.2.0 218,964 10/9/2024
6.1.1 113 10/9/2024
6.1.0 47,849 9/29/2024
6.0.24 109 9/11/2024
6.0.23 340,053 7/18/2024
6.0.21 125 6/18/2024
6.0.20 727,691 6/16/2024
6.0.19 30,597 6/14/2024
6.0.18 111 6/14/2024
6.0.17 116 6/14/2024
6.0.16 49,967 6/10/2024
6.0.15 118 6/9/2024
6.0.14 94,261 5/24/2024
6.0.13 117 5/23/2024
6.0.12 108 5/23/2024
6.0.11 119 5/20/2024
6.0.9 129 5/20/2024
6.0.7 126 5/18/2024
6.0.6 114 5/10/2024
6.0.5 122 5/10/2024
6.0.4 549,665 4/3/2024
6.0.3 137 3/25/2024
6.0.2 132 3/11/2024
6.0.0 245 11/21/2023
6.0.0-rc.6 115 10/25/2023
6.0.0-rc.5 85 10/25/2023
6.0.0-rc.4 83 10/23/2023
6.0.0-rc.3 81 10/19/2023
6.0.0-rc.2 77 10/18/2023
6.0.0-rc.1 78 10/16/2023
5.0.20 169 9/25/2023
5.0.19 178 9/10/2023
5.0.18 167 9/6/2023
5.0.17 168 9/6/2023
5.0.16 171 9/5/2023
5.0.15 161 9/5/2023
5.0.14 162 9/5/2023
5.0.13 158 9/1/2023
5.0.12 179 8/31/2023
5.0.11 138 8/30/2023
5.0.10 185 8/29/2023
5.0.9 170 8/24/2023
5.0.8 163 8/24/2023
5.0.7 175 8/23/2023
5.0.6 168 8/21/2023
5.0.5 182 8/21/2023
5.0.4 191 8/16/2023
5.0.3 195 8/2/2023
5.0.2 182 8/2/2023