TspNet4.Session 1.1.2

dotnet add package TspNet4.Session --version 1.1.2
NuGet\Install-Package TspNet4.Session -Version 1.1.2
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="TspNet4.Session" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TspNet4.Session --version 1.1.2
#r "nuget: TspNet4.Session, 1.1.2"
#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 TspNet4.Session as a Cake Addin
#addin nuget:?package=TspNet4.Session&version=1.1.2

// Install TspNet4.Session as a Cake Tool
#tool nuget:?package=TspNet4.Session&version=1.1.2

TspNet4.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 state provider library for ASP.NET applications. It allows you to store and manage session data for your ASP.NET applications and allows you to share them across multiple versions including .NET Core 6.

⚙️ Installation

nuget install tspnet4.session

✨ Getting started


Add your connection string to the <connectionStrings> section of your Web.config file.

<connectionStrings>
    <add name="TspNetConnString" connectionString="Server=localhost;Database=ASPState;User Id=sa;Password=vas****;" />
</connectionStrings>


Add the following configuration settings to the <system.web> section of your Web.config file.

<sessionState mode="Custom" customProvider="TspNetSessionStore" sessionIDManagerType="TspNet.SessionId">
    <providers>
        <add name="TspNetSessionStore" type="TspNet.SessionStore" connectionStringName="TspNetConnString" encryptionKey="MTczN******" autoCreateTable="True" />
    </providers>
</sessionState>

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5.2

    • 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
1.1.2 107 12/30/2023
1.1.1 95 12/24/2023
1.1.0 103 12/23/2023
1.0.0 101 12/23/2023

Bug fixes.