TspNet.Authentication.Session
1.0.1
dotnet add package TspNet.Authentication.Session --version 1.0.1
NuGet\Install-Package TspNet.Authentication.Session -Version 1.0.1
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="TspNet.Authentication.Session" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TspNet.Authentication.Session --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TspNet.Authentication.Session, 1.0.1"
#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.
// Install TspNet.Authentication.Session as a Cake Addin #addin nuget:?package=TspNet.Authentication.Session&version=1.0.1 // Install TspNet.Authentication.Session as a Cake Tool #tool nuget:?package=TspNet.Authentication.Session&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TspNet.Authentication.Session
🚨 Use caution when using this library in production environments. This library is still in development and has not been tested in production environments. Use at your own risk.
This is a session tokens authentication library for ASP.NET applications. It allows you manage authentication state in the session and allows to use modern Authorization using [Authorize] attribute.
⚙️ Installation
dotnet add package TspNet.Authentication.Session
✨ Getting started
// add the following to appsettings.json file
// "UserId", "Role1", "Role2" are the session variables
"SessionTokens": {
"UserNameToken": "UserId",
"RoleTokens": [
"Role1",
"Role2"
]
}
// add services to the builder
using TspNet.Authentication.Session;
builder.Services.AddSession();
builder.Services.AddOptions<SessionTokenAuthenticationOptions>(SessionTokenDefaults.AuthenticationScheme).Bind(builder.Configuration.GetSection("SessionTokens"));
builder.Services.AddAuthentication(SessionTokenDefaults.AuthenticationScheme)
.AddSessionToken();
// use the service
app.UseSession();
app.UseAuthentication();
app.UseAuthorization();
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.AspNetCore.Authentication (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Bug fixes.