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