2 writes to _store
Microsoft.AspNetCore.Session (2)
DistributedSession.cs (2)
78_store = new DefaultDistributedSessionStore(); 201_store = new NoOpSessionStore();
10 references to _store
Microsoft.AspNetCore.Session (10)
DistributedSession.cs (10)
127return _store.Keys.Select(key => key.KeyString); 135return _store.TryGetValue(new EncodedKey(key), out value); 159_store.SetValue(encodedKey, copy); 167_isModified |= _store.Remove(new EncodedKey(key)); 174_isModified |= _store.Count > 0; 175_store.Clear(); 285_logger.SessionStored(_sessionKey, Id, _store.Count); 320SerializeNumAs3Bytes(output, _store.Count); 323foreach (var entry in _store) 350_store.SetValue(key, ReadBytes(content, dataLength));