Externalbyte.QuantumIdentity.Owin30
1.1.0
See the version list below for details.
dotnet add package Externalbyte.QuantumIdentity.Owin30 --version 1.1.0
NuGet\Install-Package Externalbyte.QuantumIdentity.Owin30 -Version 1.1.0
<PackageReference Include="Externalbyte.QuantumIdentity.Owin30" Version="1.1.0" />
paket add Externalbyte.QuantumIdentity.Owin30 --version 1.1.0
#r "nuget: Externalbyte.QuantumIdentity.Owin30, 1.1.0"
// Install Externalbyte.QuantumIdentity.Owin30 as a Cake Addin #addin nuget:?package=Externalbyte.QuantumIdentity.Owin30&version=1.1.0 // Install Externalbyte.QuantumIdentity.Owin30 as a Cake Tool #tool nuget:?package=Externalbyte.QuantumIdentity.Owin30&version=1.1.0
Quantum Identity is an OWIN Middleware component for tracking anonymous users in ASP.Net web applications.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. 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. |
-
- Microsoft.Owin (>= 3.0.0)
- Microsoft.Owin.Security (>= 3.0.0)
- Microsoft.Owin.Security.Cookies (>= 3.0.0)
- Owin (>= 1.0.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:
1) After authentication the anonymous cookie would not honor the ExpireTimeSpan and would be converted into a session cookie. This would cause the anonymous cookie to be deleted after all browser instances were closed causing a new cookie to be created on the next visit to the application.
2) In certain scenarios the cookie was being sent to the client more than once per request.
3) In certain scenarios the OnException callback would not be called for an exception.
New feature:
1) A new callback called ValidateIdentityAsync has been added. This callback allows for any custom validation logic to execute to determine if an anonymous identity is valid. If you are using the OnCreateUserAsync callback to store anonymous users in a back-end system and you have a process that actively deletes stale users after a period of time then this new callback should be implemented. Return true from this callback to indicate that an anonymous identity is valid or return false to indicate that the identity is no longer located in your system and therefore invalid. When false is returned from this callback this causes a new anonymous identity to be created for the current request and the standard event lifecycle kicks in.