4 references to _storage
Microsoft.Extensions.AI.Tests (4)
TestInMemoryCacheStorage.cs (4)
16
public ICollection<string> Keys =>
_storage
.Keys;
19
=>
_storage
.TryGetValue(key, out var value) ? value : null;
33
=>
_storage
.TryRemove(key, out _);
43
_storage
[key] = value;