![]() |
VOOZH | about |
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" />Directory.Packages.props
<PackageReference Include="YngveHestem.Storage.WebDAV" />Project file
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.0Install as a Cake Addin
#tool nuget:?package=YngveHestem.Storage.WebDAV&version=1.0.0Install as a Cake Tool
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.
WebDAVClient package.YngveHestem.Storage.WebDAV package or project.WebDAVClient.Client and pass it to
WebDavStorageProvider.IStorageProvider interface.// 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}");
}
}
}
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.
See the repository LICENSE file for license details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 242 | 11/23/2025 |
- Initial release