3 references to HttpContextItemKey
Microsoft.AspNetCore.Components.Endpoints (3)
DependencyInjection\TempDataService.cs (1)
45if (!httpContext.Items.TryGetValue(TempDataProviderServiceCollectionExtensions.HttpContextItemKey, out var tempDataObj)
TempData\TempDataProviderServiceCollectionExtensions.cs (2)
52if (httpContext.Items.TryGetValue(HttpContextItemKey, out var tempDataObj) && tempDataObj is ITempData tempData) 59httpContext.Items[HttpContextItemKey] = tempDataInstance;