5 references to _store
Microsoft.AspNetCore.Components.Endpoints.Tests (5)
TempData\SessionStorageTempDataProviderTest.cs (5)
145public IEnumerable<string> Keys => _store.Keys; 147public void Clear() => _store.Clear(); 153public void Remove(string key) => _store.Remove(key); 155public void Set(string key, byte[] value) => _store[key] = value; 157public bool TryGetValue(string key, out byte[] value) => _store.TryGetValue(key, out value!);