8 references to CacheViewService
Microsoft.AspNetCore.Components.Endpoints (8)
CacheView\CacheView.cs (1)
100[Inject] internal CacheViewService? CacheService { get; set; }
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (1)
86services.TryAddSingleton<CacheViewService>();
Rendering\EndpointHtmlRenderer.Streaming.cs (6)
278CacheViewService.ThrowIfNestedInsideCapturingCacheView(output); 289if (CacheViewService.TryBeginWrite(renderState, cacheView, output, out var wrappedOutput)) 308if (captureWriter is not null && captureWriter.IsCapturing && (!CacheViewService.IsCacheableComponent(componentState.Component.GetType(), captureWriter.VaryBy) || renderBoundaryMarkers)) 419private CacheViewService? _CacheViewService; 421private CacheViewService GetCacheViewService() 422=> _CacheViewService ??= _httpContext.RequestServices.GetRequiredService<CacheViewService>();