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
                    
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="YngveHestem.Storage.WebDAV" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="YngveHestem.Storage.WebDAV" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="YngveHestem.Storage.WebDAV" />
                    
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 YngveHestem.Storage.WebDAV --version 1.0.0
                    
#r "nuget: YngveHestem.Storage.WebDAV, 1.0.0"
                    
#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 YngveHestem.Storage.WebDAV@1.0.0
                    
#: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=YngveHestem.Storage.WebDAV&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=YngveHestem.Storage.WebDAV&version=1.0.0
                    
Install as a Cake Tool

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 WebDAVClient package.
  • Designed to be a drop-in replacement for other providers (for tests or switching backing stores).

Quick start

  1. Add a reference to the YngveHestem.Storage.WebDAV package or project.
  2. Create a configured WebDAVClient.Client and pass it to WebDavStorageProvider.
  3. Use the provider via the IStorageProvider interface.

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 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. 
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
1.0.0 171 11/23/2025

- Initial release