Class ServerSideSession
- Namespace
- Duende.IdentityServer.Models
- Assembly
- Duende.IdentityServer.Storage.dll
A user session
public class ServerSideSession
- Inheritance
-
ServerSideSession
- Inherited Members
Constructors
ServerSideSession()
public ServerSideSession()
Properties
Created
The creation time
public DateTime Created { get; set; }
Property Value
DisplayName
The display name for the user
public string? DisplayName { get; set; }
Property Value
Expires
The expiration time
public DateTime? Expires { get; set; }
Property Value
Key
The key
public string Key { get; set; }
Property Value
Renewed
The renewal time
public DateTime Renewed { get; set; }
Property Value
Scheme
The cookie handler scheme
public string Scheme { get; set; }
Property Value
SessionId
The session ID
public string SessionId { get; set; }
Property Value
SubjectId
The subject ID
public string SubjectId { get; set; }
Property Value
Ticket
The serialized ticket
public string Ticket { get; set; }