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