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