Implemented interface member:
method
Peek
Microsoft.AspNetCore.Components.ITempData.Peek(System.String)
5 references to Peek
Microsoft.AspNetCore.Components.Endpoints (2)
TempData\TempData.cs (2)
144return ContainsKey(item.Key) && Equals(Peek(item.Key), item.Value); 154if (ContainsKey(item.Key) && Equals(Peek(item.Key), item.Value))
Microsoft.AspNetCore.Components.Endpoints.Tests (3)
TempData\TempDataTest.cs (3)
48var value = tempData.Peek("Key1"); 58var value = tempData.Peek("NonExistent"); 245_ = tempData.Peek("Key");