Rystem.Content.Infrastructure.M365.Sharepoint
9.0.19
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Rystem.Content.Infrastructure.M365.Sharepoint --version 9.0.19
NuGet\Install-Package Rystem.Content.Infrastructure.M365.Sharepoint -Version 9.0.19
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.M365.Sharepoint" Version="9.0.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.Content.Infrastructure.M365.Sharepoint" Version="9.0.19" />
<PackageReference Include="Rystem.Content.Infrastructure.M365.Sharepoint" />
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.M365.Sharepoint --version 9.0.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Rystem.Content.Infrastructure.M365.Sharepoint, 9.0.19"
#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 Rystem.Content.Infrastructure.M365.Sharepoint@9.0.19
#: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=Rystem.Content.Infrastructure.M365.Sharepoint&version=9.0.19
#tool nuget:?package=Rystem.Content.Infrastructure.M365.Sharepoint&version=9.0.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
What is Rystem?
Get information
https://<tenant>.sharepoint.com/sites/<site-url>/_api/site/id
Integration with Sharepoint online and Content Repository
await services
.AddContentRepository()
.WithSharepointIntegrationAsync(x =>
{
x.TenantId = configuration["Sharepoint:TenantId"];
x.ClientId = configuration["Sharepoint:ClientId"];
x.ClientSecret = configuration["Sharepoint:ClientSecret"];
x.MapWithSiteNameAndDocumentLibraryName("TestNumberOne", "Foglione");
//x.MapWithRootSiteAndDocumentLibraryName("Foglione");
//x.MapWithSiteIdAndDocumentLibraryId(configuration["Sharepoint:SiteId"],
// configuration["Sharepoint:DocumentLibraryId"]);
}, "sharepoint")
.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("sharepoint");
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 | Versions 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.
-
net9.0
- Azure.Identity (>= 1.13.2)
- Microsoft.Graph (>= 5.72.0)
- Rystem.Content.Abstractions (>= 9.0.19)
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.1.2 | 261,619 | 5/29/2025 |
9.1.1 | 97,710 | 5/2/2025 |
9.0.32 | 186,596 | 4/15/2025 |
9.0.31 | 5,715 | 4/2/2025 |
9.0.30 | 88,747 | 3/26/2025 |
9.0.29 | 8,927 | 3/18/2025 |
9.0.28 | 154 | 3/17/2025 |
9.0.27 | 168 | 3/16/2025 |
9.0.26 | 178 | 3/13/2025 |
9.0.25 | 52,025 | 3/9/2025 |
9.0.21 | 234 | 3/6/2025 |
9.0.20 | 19,503 | 3/6/2025 |
9.0.19 | 234 | 3/6/2025 |
9.0.18 | 231 | 3/4/2025 |
9.0.17 | 124 | 3/1/2025 |
9.0.16 | 110 | 3/1/2025 |
9.0.15 | 75,455 | 2/22/2025 |
9.0.14 | 22,504 | 2/18/2025 |
9.0.13 | 138 | 2/9/2025 |
9.0.12 | 217,611 | 1/13/2025 |
9.0.11 | 23,968 | 1/9/2025 |
9.0.10 | 99 | 1/9/2025 |
9.0.9 | 3,976 | 1/7/2025 |
9.0.8 | 12,478 | 1/6/2025 |
9.0.7 | 118 | 1/6/2025 |
9.0.4 | 92,249 | 12/23/2024 |
9.0.3 | 121 | 12/22/2024 |
9.0.2 | 10,662 | 12/21/2024 |
9.0.1 | 1,171 | 12/21/2024 |
9.0.0 | 172,952 | 11/16/2024 |
9.0.0-rc.1 | 97 | 10/18/2024 |
6.2.0 | 219,034 | 10/9/2024 |
6.1.1 | 124 | 10/9/2024 |
6.1.0 | 47,884 | 9/29/2024 |
6.0.24 | 148 | 9/11/2024 |
6.0.23 | 340,028 | 7/18/2024 |
6.0.21 | 144 | 6/18/2024 |
6.0.20 | 727,729 | 6/16/2024 |
6.0.19 | 30,408 | 6/14/2024 |
6.0.18 | 142 | 6/14/2024 |
6.0.17 | 136 | 6/14/2024 |
6.0.16 | 49,995 | 6/10/2024 |
6.0.15 | 144 | 6/9/2024 |
6.0.14 | 94,519 | 5/24/2024 |
6.0.13 | 147 | 5/23/2024 |
6.0.12 | 132 | 5/23/2024 |
6.0.11 | 156 | 5/20/2024 |
6.0.9 | 167 | 5/20/2024 |
6.0.7 | 136 | 5/18/2024 |
6.0.6 | 137 | 5/10/2024 |
6.0.5 | 138 | 5/10/2024 |
6.0.4 | 550,028 | 4/3/2024 |
6.0.3 | 203 | 3/25/2024 |
6.0.2 | 208 | 3/11/2024 |
6.0.0 | 236 | 11/21/2023 |
6.0.0-rc.6 | 116 | 10/25/2023 |
6.0.0-rc.5 | 94 | 10/25/2023 |
6.0.0-rc.4 | 90 | 10/23/2023 |
6.0.0-rc.3 | 85 | 10/19/2023 |
6.0.0-rc.2 | 91 | 10/18/2023 |
6.0.0-rc.1 | 95 | 10/16/2023 |
5.0.20 | 185 | 9/25/2023 |
5.0.19 | 219 | 9/10/2023 |
5.0.18 | 203 | 9/6/2023 |
5.0.17 | 172 | 9/6/2023 |
5.0.16 | 192 | 9/5/2023 |
5.0.15 | 196 | 9/5/2023 |
5.0.14 | 202 | 9/5/2023 |
5.0.13 | 175 | 9/1/2023 |
5.0.12 | 201 | 8/31/2023 |
5.0.11 | 194 | 8/30/2023 |
5.0.10 | 208 | 8/29/2023 |
5.0.9 | 198 | 8/24/2023 |
5.0.8 | 201 | 8/24/2023 |
5.0.7 | 203 | 8/23/2023 |
5.0.6 | 195 | 8/21/2023 |
5.0.5 | 224 | 8/21/2023 |
5.0.4 | 201 | 8/16/2023 |
5.0.3 | 247 | 8/2/2023 |
5.0.2 | 229 | 8/2/2023 |
5.0.1 | 236 | 8/1/2023 |
5.0.0 | 246 | 7/31/2023 |
4.0.6 | 249 | 7/20/2023 |
4.0.4 | 284 | 7/10/2023 |
4.0.3 | 216 | 7/10/2023 |
4.0.0 | 226 | 7/9/2023 |