2 implementations of TryGetValue
Microsoft.AspNetCore.Session (2)
DefaultDistributedSessionStore.cs (1)
17public bool TryGetValue(EncodedKey key, [MaybeNullWhen(false)] out byte[] value)
NoOpSessionStore.cs (1)
30public bool TryGetValue(EncodedKey key, [MaybeNullWhen(false)] out byte[] value)
1 reference to TryGetValue
Microsoft.AspNetCore.Session (1)
DistributedSession.cs (1)
135return _store.TryGetValue(new EncodedKey(key), out value);