Niobium.Channel.Identity 3.4.30

There is a newer version of this package available.
See the version list below for details.
dotnet add package Niobium.Channel.Identity --version 3.4.30
                    
NuGet\Install-Package Niobium.Channel.Identity -Version 3.4.30
                    
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="Niobium.Channel.Identity" Version="3.4.30" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Niobium.Channel.Identity" Version="3.4.30" />
                    
Directory.Packages.props
<PackageReference Include="Niobium.Channel.Identity" />
                    
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 Niobium.Channel.Identity --version 3.4.30
                    
#r "nuget: Niobium.Channel.Identity, 3.4.30"
                    
#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 Niobium.Channel.Identity@3.4.30
                    
#: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=Niobium.Channel.Identity&version=3.4.30
                    
Install as a Cake Addin
#tool nuget:?package=Niobium.Channel.Identity&version=3.4.30
                    
Install as a Cake Tool

Niobium.Channel.Identity

Niobium.Channel.Identity provides core identity and authentication services for the Niobium framework. It supplies abstractions, commands, and helpers for secure user authentication, authorization, and identity management in .NET and Blazor applications.

What is this project about?

  • Implements authentication schemes (e.g., Basic, TOTP, OAuth) and login commands for business applications.
  • Provides extensible interfaces for authenticators, identity helpers, and login flows.
  • Used by consumer projects to enable secure login, user management, and integration with Niobium's event-driven architecture.

Getting Started

1. Install the NuGet Package

Add the package to your .NET or Blazor project:

dotnet add package Niobium.Channel.Identity

2. Register Services in Dependency Injection

Add Niobium.Channel.Identity to your DI container (typically in Program.cs):

using Niobium.Channel.Identity;

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddIdentity(options =>
{
    options.App = "YourAppName";
    // Configure additional options as needed
});

3. Use Authentication Services in Your Application

Inject and use the provided services in your application:

@inject IAuthenticator Authenticator
  • IAuthenticator provides methods for login, logout, and authentication state.
  • Use login commands (e.g., TOTPLoginCommand) for advanced scenarios.

4. Integration with Other Niobium Packages

Niobium.Channel.Identity is designed to work seamlessly with:

  • Niobium.Channel.Identity.Blazor for Blazor UI integration
  • Niobium.Channel.Profile for user profile management
  • All other Niobium.* packages

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes with clear commit messages
  4. Submit a pull request

Please ensure your code follows the existing style and includes appropriate tests and documentation.

License

This project is licensed under the MIT License. See the LICENSE file for 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 (2)

Showing the top 2 NuGet packages that depend on Niobium.Channel.Identity:

Package Downloads
Niobium.Channel.Blazor

Blazor integration and navigation for Niobium business apps.

Niobium.Channel.Speech

Speech recognition and synthesis for .NET voice features.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.2.66 127 9/4/2026
4.0.60 130 8/30/2026
4.0.53 131 8/27/2026
4.0.48 145 8/9/2026
4.0.42 165 7/18/2026
4.0.37 154 7/17/2026
4.0.35 152 7/17/2026
4.0.34 156 7/17/2026
4.0.33 156 7/16/2026
4.0.32 169 7/2/2026
3.4.30 270 12/22/2025
3.4.29 370 11/11/2025
3.4.28 249 11/2/2025
3.4.27 208 11/1/2025
3.4.26 204 11/1/2025
3.4.25 205 11/1/2025
3.4.24 243 10/31/2025
3.2.23 179 10/18/2025
3.2.22 224 10/17/2025
3.2.21 227 10/17/2025
Loading failed