8 references to TempDataCascadingValueSupplier
Microsoft.AspNetCore.Components.Endpoints (8)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (2)
77services.TryAddScoped<TempDataCascadingValueSupplier>(); 79sp => sp.GetRequiredService<TempDataCascadingValueSupplier>().CreateSubscription);
DependencyInjection\TempDataService.cs (1)
30if (httpContext.RequestServices.GetService<TempDataCascadingValueSupplier>() is { } supplier)
Rendering\EndpointHtmlRenderer.cs (1)
125if (httpContext.RequestServices.GetService<TempDataCascadingValueSupplier>() is { } tempDataSupplier)
TempData\TempDataCascadingValueSupplier.cs (4)
19private readonly ILogger<TempDataCascadingValueSupplier> _logger; 21public TempDataCascadingValueSupplier(ILogger<TempDataCascadingValueSupplier> logger) 106private readonly TempDataCascadingValueSupplier _owner; 114TempDataCascadingValueSupplier owner,