1 implementation of ISessionStore
Microsoft.AspNetCore.Session (1)
DistributedSessionStore.cs (1)
13
public 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)
24
private readonly
ISessionStore
_sessionStore;
33
/// <param name="sessionStore">The <see cref="
ISessionStore
"/> representing the session store.</param>
39
ISessionStore
sessionStore,
SessionServiceCollectionExtensions.cs (1)
26
services.TryAddTransient<
ISessionStore
, DistributedSessionStore>();