SimpleW.Service.BasicAuth 26.0.0

dotnet add package SimpleW.Service.BasicAuth --version 26.0.0
                    
NuGet\Install-Package SimpleW.Service.BasicAuth -Version 26.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="SimpleW.Service.BasicAuth" Version="26.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleW.Service.BasicAuth" Version="26.0.0" />
                    
Directory.Packages.props
<PackageReference Include="SimpleW.Service.BasicAuth" />
                    
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 SimpleW.Service.BasicAuth --version 26.0.0
                    
#r "nuget: SimpleW.Service.BasicAuth, 26.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 SimpleW.Service.BasicAuth@26.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=SimpleW.Service.BasicAuth&version=26.0.0
                    
Install as a Cake Addin
#tool nuget:?package=SimpleW.Service.BasicAuth&version=26.0.0
                    
Install as a Cake Tool

SimpleW.Service.BasicAuth

website

NuGet Package NuGet Downloads License <br/> Linux MacOS Windows (Visual Studio)

Features

SimpleW.Service.BasicAuth is the convenience module built on top of SimpleW.Helper.BasicAuth.

It lets you:

  • restore session.Principal automatically from the Basic header
  • challenge handlers decorated with [BasicAuth("Realm")]
  • honor [AllowAnonymous]
  • optionally bypass protected OPTIONS requests
  • configure users inline or reuse a pre-built BasicAuthHelper

Getting Started

Minimal module usage:

using SimpleW;
using SimpleW.Helper.BasicAuth;
using SimpleW.Service.BasicAuth;

namespace Sample {
    class Program {

        static async Task Main() {

            var server = new SimpleWServer(System.Net.IPAddress.Any, 2015);

            server.UseBasicAuthModule(options => {
                options.Users = [
                    new BasicUser("admin", "secret")
                ];
            });

            server.MapController<AdminController>("/api");

            await server.RunAsync();
        }
    }

    [Route("/admin")]
    [BasicAuth("Admin Area")]
    public class AdminController : Controller {

        [Route("GET", "/me")]
        public object Me() {
            return new {
                user = Principal.Name
            };
        }

        [AllowAnonymous]
        [Route("GET", "/health")]
        public object Health() {
            return new { ok = true };
        }

    }
}

If you want a fully custom Basic auth policy, instantiate BasicAuthHelper directly from SimpleW.Helper.BasicAuth and wire your own middleware.

Documentation

To check out docs, visit simplew.net.

Changelog

Detailed changes for each release are documented in the CHANGELOG.

Contribution

Feel free to report issue.

License

This library is under the MIT License.

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 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 is compatible.  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
26.0.0 96 4/26/2026