4 references to HttpContextItemKey
Microsoft.AspNetCore.Components.Endpoints (2)
TempData\TempDataProviderServiceCollectionExtensions.cs (2)
52if (httpContext.Items.TryGetValue(HttpContextItemKey, out var tempDataObj) && tempDataObj is ITempData tempData) 59httpContext.Items[HttpContextItemKey] = tempDataInstance;
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
TempData\TempDataSubscriptionTest.cs (2)
36httpContext.Items[TempDataProviderServiceCollectionExtensions.HttpContextItemKey] = tempData; 140httpContext.Items[TempDataProviderServiceCollectionExtensions.HttpContextItemKey] = mockTempData.Object;