This namespace contains classes related to the session management.
Assembly: Zyan.Communication
Collapse/Expand Public Classes
  Name Description
Public Class InProcSessionManager Slim in-process session manager.
Public Class Abstract SessionManagerBase Abstract base class for ISessionManager implementations. Contains session sweeping logic, CreateServerSession utility method and implements System.IDisposable pattern.
Public Class SqlSessionManager Session manager backed with SQL Server Database storage. Session table has the following structure:
  • SessionID
    uniqueidentifier
  • SessionTimestamp
    datetime
  • IdentityName
    nvarchar(255)
Collapse/Expand Public Interfaces
  Name Description
Public Interface ISessionManager Session manager interface.
Public Interface ISessionVariableAdapter Interface for the session variable collection indexed by variable names.