YngveHestem.Storage.WebDAV
1.0.0
dotnet add package YngveHestem.Storage.WebDAV --version 1.0.0
NuGet\Install-Package YngveHestem.Storage.WebDAV -Version 1.0.0
<PackageReference Include="YngveHestem.Storage.WebDAV" Version="1.0.0" />
<PackageVersion Include="YngveHestem.Storage.WebDAV" Version="1.0.0" />
<PackageReference Include="YngveHestem.Storage.WebDAV" />
paket add YngveHestem.Storage.WebDAV --version 1.0.0
#r "nuget: YngveHestem.Storage.WebDAV, 1.0.0"
#:package YngveHestem.Storage.WebDAV@1.0.0
#addin nuget:?package=YngveHestem.Storage.WebDAV&version=1.0.0
#tool nuget:?package=YngveHestem.Storage.WebDAV&version=1.0.0
YngveHestem.Storage.WebDAV
A .NET storage provider that exposes a WebDAV server through the
YngveHestem.Storage.Abstractions interfaces.
This project contains an implementation of the storage abstractions that uses
WebDAV as the backing store. It lets you interact with a remote WebDAV server
through IStorageProvider, IStorageFolder and IStorageFile without coupling
your application code to the WebDAV client library.
Key features
- WebDAV-backed implementation of the storage abstractions.
- Lightweight wrapper around the
WebDAVClientpackage. - Designed to be a drop-in replacement for other providers (for tests or switching backing stores).
Quick start
- Add a reference to the
YngveHestem.Storage.WebDAVpackage or project. - Create a configured
WebDAVClient.Clientand pass it toWebDavStorageProvider. - Use the provider via the
IStorageProviderinterface.
Example
// Minimal example showing construction and simple enumeration.
// Replace the URL and credentials with values that match your server.
using System;
using System.Threading.Tasks;
using WebDAVClient;
using YngveHestem.Storage.WebDAV;
using YngveHestem.Storage.Abstractions;
class Program
{
static async Task Main()
{
var clientParams = new WebDAVClient.ClientParams
{
BaseAddress = new Uri("https://webdav.example.com/")
// You may set Credentials, Timeout, etc. here.
};
using var client = new Client(clientParams);
var provider = new WebDavStorageProvider(client);
// Try to get root folder (provider behaviour may vary by server)
var root = await provider.TryGetFolderAsync("/");
if (root == null)
{
Console.WriteLine("Could not access root folder");
return;
}
var items = await root.GetItemsAsync();
foreach (var item in items)
{
Console.WriteLine($"{item.Name} - {item.Path}");
}
}
}
Contributing
Please open issues or PRs for bugs or feature requests. When adding new functionality, include tests where feasible and update this README with usage examples for the new surface.
License
See the repository LICENSE file for license details.
| 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. |
-
net8.0
- WebDAVClient (>= 2.3.0)
- YngveHestem.Storage.Abstractions (>= 1.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 |
|---|---|---|
| 1.0.0 | 171 | 11/23/2025 |
- Initial release