1 implementation of ISessionStore
Microsoft.AspNetCore.Session (1)
DistributedSessionStore.cs (1)
13public class DistributedSessionStore : ISessionStore
5 references to ISessionStore
Microsoft.AspNetCore.Session (5)
DistributedSessionStore.cs (1)
11/// An <see cref="ISessionStore"/> backed by an <see cref="IDistributedCache"/>.
SessionMiddleware.cs (3)
24private readonly ISessionStore _sessionStore; 33/// <param name="sessionStore">The <see cref="ISessionStore"/> representing the session store.</param> 39ISessionStore sessionStore,
SessionServiceCollectionExtensions.cs (1)
26services.TryAddTransient<ISessionStore, DistributedSessionStore>();