1 implementation of IHtmlAsyncContent
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\EndpointHtmlRenderer.Prerendering.cs (1)
340public class PrerenderedComponentHtmlContent : IHtmlAsyncContent
8 references to IHtmlAsyncContent
Microsoft.AspNetCore.Components.Endpoints (3)
DependencyInjection\IComponentPrerenderer.cs (1)
24ValueTask<IHtmlAsyncContent> PrerenderComponentAsync(
Rendering\EndpointHtmlRenderer.Prerendering.cs (2)
87public ValueTask<IHtmlAsyncContent> PrerenderComponentAsync( 96public async ValueTask<IHtmlAsyncContent> PrerenderComponentAsync(
Microsoft.AspNetCore.Components.Endpoints.Tests (3)
EndpointHtmlRendererTest.cs (3)
746var result = await renderer.PrerenderComponentAsync(httpContext, typeof(OnAfterRenderComponent), null, parameters); 776var result = await renderer.PrerenderComponentAsync(httpContext, typeof(AsyncDisposableComponent), null, parameters); 1782private static string HtmlContentToString(IHtmlAsyncContent result)
Microsoft.AspNetCore.Mvc.TagHelpers (1)
ComponentTagHelper.cs (1)
100var result = await componentPrerenderer.PrerenderComponentAsync(ViewContext.HttpContext, ComponentType, renderMode, parameters);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBuffer.cs (1)
235if (value.Value is IHtmlAsyncContent valueAsHtmlAsyncContent)