7 references to _store
Microsoft.AspNetCore.Session (7)
DefaultDistributedSessionStore.cs (7)
13
public int Count =>
_store
.Count;
15
public ICollection<EncodedKey> Keys =>
_store
.Keys;
18
=>
_store
.TryGetValue(key, out value);
20
public void SetValue(EncodedKey key, byte[] value) =>
_store
[key] = value;
23
=>
_store
.Remove(encodedKey);
26
=>
_store
.Clear();
29
=>
_store
.GetEnumerator();