2 implementations of SetValue
Microsoft.AspNetCore.Session (2)
DefaultDistributedSessionStore.cs (1)
20
public void
SetValue
(EncodedKey key, byte[] value) => _store[key] = value;
NoOpSessionStore.cs (1)
12
public 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));