SeliseBlocks.IamDriver 8.0.0-preview.11

This is a prerelease version of SeliseBlocks.IamDriver.
dotnet add package SeliseBlocks.IamDriver --version 8.0.0-preview.11
                    
NuGet\Install-Package SeliseBlocks.IamDriver -Version 8.0.0-preview.11
                    
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="SeliseBlocks.IamDriver" Version="8.0.0-preview.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SeliseBlocks.IamDriver" Version="8.0.0-preview.11" />
                    
Directory.Packages.props
<PackageReference Include="SeliseBlocks.IamDriver" />
                    
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 SeliseBlocks.IamDriver --version 8.0.0-preview.11
                    
#r "nuget: SeliseBlocks.IamDriver, 8.0.0-preview.11"
                    
#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.
#addin nuget:?package=SeliseBlocks.IamDriver&version=8.0.0-preview.11&prerelease
                    
Install SeliseBlocks.IamDriver as a Cake Addin
#tool nuget:?package=SeliseBlocks.IamDriver&version=8.0.0-preview.11&prerelease
                    
Install SeliseBlocks.IamDriver as a Cake Tool

SeliseBlocks.IamDriver

Overview

SeliseBlocks.IamDriver is an Identity and Access Management (IAM) driver that simplifies user creation and authentication management. It provides a standardized approach to handling user identities securely within your application.

Installation

To install SeliseBlocks.IamDriver, add the NuGet package to your project:

dotnet add package SeliseBlocks.IamDriver

Usage

Register Dependencies

Before using SeliseBlocks.IamDriver, ensure that all required dependencies are registered in your application's dependency injection container. Add the following namespace in your Program.cs:

using Blocks.Extension.DependencyInjection;

Register the IAM service:

builder.Services.RegisterBlocksIamService();
builder.services.AddSingleton<IIamDriverService, IamDriverService>();

This method will configure and register all necessary services required for the IAM driver to function properly.

Features

Create User

To create a new user, instantiate the appropriate request object and invoke the CreateUser method.

var request = new CreateUserRequest
{
    Email = "user@example.com",
    FirstName = "John",
    LastName = "Doe",
    Password = "securepassword",
    UserName = "johndoe",
    PhoneNumber = "+1234567890"
};

var response = await iamDriverService.CreateUser(request);

Summary

SeliseBlocks.IamDriver provides a powerful and flexible way to manage user identities within your application. It ensures secure authentication and seamless user management while integrating smoothly with your existing system.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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
8.0.0-preview.11 193 3/6/2025
8.0.0-preview.10 162 3/6/2025
8.0.0-preview.9 166 3/6/2025
8.0.0-preview.8 167 3/6/2025
8.0.0-preview.7 157 3/6/2025
8.0.0-preview.6 170 3/5/2025
8.0.0-preview.5 63 2/17/2025
8.0.0-preview.4 60 2/17/2025
8.0.0-preview.3 371 1/23/2025
8.0.0-preview.2 54 1/23/2025
8.0.0-preview.1 53 1/22/2025