22 references to RenderMode
Microsoft.AspNetCore.Components.Endpoints (7)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (2)
85RegisterPersistentComponentStateServiceCollectionExtensions.AddPersistentServiceRegistration<ResourceCollectionProvider>(services, RenderMode.InteractiveWebAssembly); 94RegisterPersistentComponentStateServiceCollectionExtensions.AddPersistentServiceRegistration<AntiforgeryStateProvider>(services, RenderMode.InteractiveAuto);
Discovery\RazorComponentApplication.cs (4)
46set.Add(RenderMode.InteractiveServer); 49set.Add(RenderMode.InteractiveWebAssembly); 52set.Add(RenderMode.InteractiveServer); 53set.Add(RenderMode.InteractiveWebAssembly);
Rendering\EndpointHtmlRenderer.cs (1)
138componentApplicationLifetime.SetPlatformRenderMode(RenderMode.InteractiveAuto);
Microsoft.AspNetCore.Components.Server (5)
Builder\ServerRazorComponentsEndpointConventionBuilderExtensions.cs (1)
19/// Configures the application to support the <see cref="RenderMode.InteractiveServer"/> render mode.
Circuits\CircuitFactory.cs (1)
78appLifetime.SetPlatformRenderMode(RenderMode.InteractiveServer);
Circuits\CircuitHost.cs (1)
798persistenceManager.SetPlatformRenderMode(RenderMode.InteractiveServer);
Circuits\CircuitPersistenceManager.cs (1)
32RenderMode.InteractiveServer);
Circuits\RemoteRenderer.cs (1)
68protected override IComponentRenderMode? GetComponentRenderMode(IComponent component) => RenderMode.InteractiveServer;
Microsoft.AspNetCore.Components.WebAssembly (5)
Hosting\WebAssemblyHost.cs (1)
143manager.SetPlatformRenderMode(RenderMode.InteractiveWebAssembly);
Hosting\WebAssemblyHostBuilder.cs (3)
347RegisterPersistentComponentStateServiceCollectionExtensions.AddPersistentServiceRegistration<ResourceCollectionProvider>(Services, RenderMode.InteractiveWebAssembly); 353RegisterPersistentComponentStateServiceCollectionExtensions.AddPersistentServiceRegistration<AntiforgeryStateProvider>(Services, RenderMode.InteractiveWebAssembly); 355RegisterPersistentComponentStateServiceCollectionExtensions.AddPersistentServiceRegistration<CultureStateProvider>(Services, RenderMode.InteractiveWebAssembly);
Rendering\WebAssemblyRenderer.cs (1)
107protected override IComponentRenderMode? GetComponentRenderMode(IComponent component) => RenderMode.InteractiveWebAssembly;
Microsoft.AspNetCore.Components.WebAssembly.Server (3)
AuthenticationStateSerializer.cs (1)
25_subscription = persistentComponentState.RegisterOnPersisting(OnPersistingAsync, RenderMode.InteractiveWebAssembly);
Builder\WebAssemblyRazorComponentsEndpointConventionBuilderExtensions.cs (1)
23/// Configures the application to support the <see cref="RenderMode.InteractiveWebAssembly"/> render mode.
WebAssemblyRazorComponentsBuilderExtensions.cs (1)
48RenderMode.InteractiveWebAssembly);
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Rendering\HtmlHelperComponentExtensions.cs (2)
74RenderMode.ServerPrerendered => Components.Web.RenderMode.InteractiveServer, 76RenderMode.WebAssemblyPrerendered => Components.Web.RenderMode.InteractiveWebAssembly,