2 implementations of SetValue
Microsoft.AspNetCore.Session (2)
DefaultDistributedSessionStore.cs (1)
20public void SetValue(EncodedKey key, byte[] value) => _store[key] = value;
NoOpSessionStore.cs (1)
12public void SetValue(EncodedKey key, byte[] value)
2 references to SetValue
Microsoft.AspNetCore.Session (2)
DistributedSession.cs (2)
159_store.SetValue(encodedKey, copy); 350_store.SetValue(key, ReadBytes(content, dataLength));