2 implementations of Keys
Microsoft.AspNetCore.Session (2)
DefaultDistributedSessionStore.cs (1)
15public ICollection<EncodedKey> Keys => _store.Keys;
NoOpSessionStore.cs (1)
20public ICollection<EncodedKey> Keys { get; } = Array.Empty<EncodedKey>();
1 reference to Keys
Microsoft.AspNetCore.Session (1)
DistributedSession.cs (1)
127return _store.Keys.Select(key => key.KeyString);