title | author | description | monikerRange | ms.author | ms.custom | ms.date | uid |
---|---|---|---|---|---|---|---|
ASP.NET Core Blazor render modes |
guardrex |
Learn about Blazor render modes and how to apply them in Blazor Web Apps. |
>= aspnetcore-8.0 |
riande |
mvc |
09/08/2023 |
blazor/components/render-modes |
This article explains control of Razor component rendering in Blazor Web Apps, either at compile time or runtime.
Every component in a Blazor Web App adopts a render mode to determine the hosting model that it uses, where it's rendered, and whether or not it's interactive.
The following table shows the available render modes for rendering Razor components in a Blazor Web App. To apply a render mode to a component use the @rendermode
directive on the component instance or on the component definition. Later in this article, examples are shown for each render mode scenario.
Name | Description | Render location | Interactive |
---|---|---|---|
Static | Static server rendering | Server | ❌No |
Interactive Server | Interactive server rendering using Blazor Server | Server | ✔️Yes |
Interactive WebAssembly | Interactive client rendering using Blazor WebAssembly | Client | ✔️Yes |
Interactive Auto | Interactive client rendering using Blazor Server initially and then WebAssembly on subsequent visits after the Blazor bundle is downloaded | Server, then client | ✔️Yes |
Prerendering is enabled by default for interactive components. Guidance on controlling prerendering is provided later in this article.
The following examples demonstrate setting the component's render mode with a few basic Razor component features.
To test the render mode behaviors locally, you can place the following components in an app created from the Blazor Web App project template. When you create the app, select the checkboxes (Visual Studio) or apply the CLI options (.NET CLI) to enable both server-side and client-side interactivity. For guidance on how to create a Blazor Web App, see xref:blazor/tooling.
A Blazor Web App must be configured to support interactive render modes. The following extensions are automatically applied to apps created from the Blazor Web App project template during app creation. Individual components are still required to declare their render mode per the Render modes section after the component services and endpoints are configured in the app's Program
file.
Services for Razor components are added by calling xref:Microsoft.Extensions.DependencyInjection.RazorComponentsServiceCollectionExtensions.AddRazorComponents%2A.
Component builder extensions:
AddInteractiveServerComponents
adds services to support rendering interactive server components.AddInteractiveWebAssemblyComponents
adds services to support rendering interactive WebAssembly components.
xref:Microsoft.AspNetCore.Builder.RazorComponentsEndpointRouteBuilderExtensions.MapRazorComponents%2A discovers available components and specifies the root component for the app, which by default is the App
component (App.razor
).
Endpoint convention builder extensions:
AddInteractiveServerRenderMode
configures the Server render mode for the app.AddInteractiveWebAssemblyRenderMode
configures the WebAssembly render mode for the app.
Note
For orientation on the placement of the API in the following examples, inspect the Program
file of an app generated from the Blazor Web App project template. For guidance on how to create a Blazor Web App, see xref:blazor/tooling.
Example 1: The following Program
file API adds services and configuration for enabling the Server render mode:
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
Example 2: The following Program
file API adds services and configuration for enabling the WebAssembly render mode:
builder.Services.AddRazorComponents()
.AddInteractiveWebAssemblyComponents();
app.MapRazorComponents<App>()
.AddInteractiveWebAssemblyRenderMode();
Example 3: The following Program
file API adds services and configuration for enabling the interactive Server, WebAssembly, and Auto render modes:
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents()
.AddInteractiveWebAssemblyComponents();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode()
.AddInteractiveWebAssemblyRenderMode();
Blazor uses the Blazor WebAssembly hosting model to download and execute components that use the WebAssembly render mode. A separate client project is required to set up Blazor WebAssembly hosting for these components. The client project contains the startup code for the Blazor WebAssembly host and sets up the .NET runtime for running in a browser. The Blazor Web App template adds this client project for you when you select the option to enable WebAssembly interactivity. Any components using the WebAssembly render mode should be built from the client project, so they get included in the downloaded app bundle.
To apply a render mode to a component instance use the @rendermode
Razor directive attribute where the component is used.
In the following example, the Server render mode is applied to the Dialog
component instance:
<Dialog @rendermode="RenderMode.InteractiveServer" />
Note
For the release of .NET 8 in November, the Blazor templates will include a using static
statement for xref:Microsoft.AspNetCore.Components.Web.RenderMode in the app's _Imports
file for shorter @rendermode
syntax.
In Components/_Imports.razor
:
@using static Microsoft.AspNetCore.Components.Web.RenderMode
Simplified @rendermode
assignment:
<Dialog @rendermode="InteractiveServer" />
During Release Candidate 2, you can add the using static
statement to your Blazor apps to shorten the syntax.
You can reference static render mode instances instantiated directly with custom configuration:
@rendermode renderMode
...
@code {
private static IComponentRenderMode renderMode =
new InteractiveWebAssemblyRenderMode(prerender: false);
}
To specify the render mode for a component as part of its definition, use the @rendermode
Razor directive and the corresponding render mode attribute.
@page "..."
@rendermode RenderMode.InteractiveServer
Note
In an app generated from the Blazor project template during Release Candidate 2, add a using static
statement for xref:Microsoft.AspNetCore.Components.Web.RenderMode to Components/_Imports.razor
if you want to use shortened syntax (@rendermode InteractiveServer
):
@using static Microsoft.AspNetCore.Components.Web.RenderMode
Applying a render mode to a component definition is commonly used when applying a render mode to a specific page. Routable pages by default use the same render mode as the router component that rendered the page.
Technically, @rendermode
is both a Razor directive and a Razor directive attribute. The semantics are similar, but there are differences. The @rendermode
directive is on the component definition, so the referenced render mode instance must be static. The @rendermode
directive attribute can take any render mode instance.
Note
Component authors should avoid coupling a component's implementation to a specific render mode. Instead, component authors should typically design components to support any render mode or hosting model. A component's implementation should avoid assumptions on where it's running (server or client) and should degrade gracefully when rendered statically. Specifying the render mode in the component definition may be needed if the component isn't instantiated directly (such as with a routable page component) or to specify a render mode for all component instances.
Note
During .NET 8 Release Candidate 2, the Blazor Web App project template sets the interactive render mode with the @attribute
Razor directive in template-generated sample components. The template will be updated to use the @rendermode
Razor directive for the release of .NET 8 in November.
Render mode | Directive |
---|---|
Interactive Server | @attribute [RenderModeInteractiveServer] |
Interactive WebAssembly | @attribute [RenderModeInteractiveWebAssembly] |
Interactive Auto | @attribute [RenderModeInteractiveAuto] |
You can change the directives in an app generated by the project template to use the @rendermode
directive.
Prerendering is enabled by default for interactive components.
To disable prerendering for a component instance, pass the prerender
flag with a value of false
with either a new InteractiveServerRenderMode
or InteractiveAutoRenderMode
:
<... @rendermode="new InteractiveServerRenderMode(prerender: false)" />
<... @rendermode="new InteractiveAutoRenderMode(prerender: false)" />
To disable prerendering in a component definition, pass the prerender
flag with a value of false
with either the RenderModeInteractiveServer
attribute or RenderModeInteractiveAuto
attribute:
@page "..."
@attribute [RenderModeInteractiveServer(prerender: false)]
@page "..."
@attribute [RenderModeInteractiveAuto(prerender: false)]
To disable prerendering for the entire app, indicate the render mode at the highest-level component in the app's component hierarchy that isn't a root component (root components can't be interactive). Typically, this is where the Routes
component is used in the App
component (Components/App.razor
) for apps based on the Blazor Web App project template:
<Routes @rendermode="new InteractiveServerRenderMode(prerender: false)" />
Also, disable prerendering for the HeadOutlet
component:
<HeadOutlet @rendermode="new InteractiveServerRenderMode(prerender: false)" />
By default, components use the Static render mode. The component renders to the response stream and interactivity isn't enabled.
In the following example, there's no designation for the component's render mode, and the component inherits the default render mode from its parent. Therefore, the component is statically rendered on the server. The button isn't interactive and doesn't call the UpdateMessage
method when selected. The value of message
doesn't change, and the component isn't rerendered in response to UI events.
RenderMode1.razor
:
@page "/render-mode-1"
<button @onclick="UpdateMessage">Click me</button> @message
@code {
private string message = "Not clicked yet.";
private void UpdateMessage()
{
message = "Somebody clicked me!";
}
}
If using the preceding component locally in a Blazor Web App, place the component in the server project's Components/Pages
folder. The server project is the solution's project with a name that doesn't end in .Client
. When the app is running, navigate to /render-mode-1
in the browser's address bar.
The Server render mode renders the component interactively from the server using Blazor Server. User interactions are handled over a real-time connection with the browser. The circuit connection is established when the Server component is rendered.
In the following example, the render mode is set to Server by adding @rendermode RenderMode.InteractiveServer
to the component definition. The button calls the UpdateMessage
method when selected. The value of message
changes, and the component is rerendered to update the message in the UI.
RenderMode2.razor
:
@page "/render-mode-2"
@rendermode RenderMode.InteractiveServer
<button @onclick="UpdateMessage">Click me</button> @message
@code {
private string message = "Not clicked yet.";
private void UpdateMessage()
{
message = "Somebody clicked me!";
}
}
If using the preceding component locally in a Blazor Web App, place the component in the server project's Components/Pages
folder. The server project is the solution's project with a name that doesn't end in .Client
. When the app is running, navigate to /render-mode-2
in the browser's address bar.
The WebAssembly render mode renders the component interactively on the client using Blazor WebAssembly. The .NET runtime and app bundle are downloaded and cached when the WebAssembly component is initially rendered. Components using the WebAssembly render mode must be built from a separate client project that sets up the Blazor WebAssembly host.
In the following example, the render mode is set to WebAssembly with @rendermode RenderMode.InteractiveWebAssembly
. The button calls the UpdateMessage
method when selected. The value of message
changes, and the component is rerendered to update the message in the UI.
RenderMode3.razor
:
@page "/render-mode-3"
@rendermode RenderMode.InteractiveWebAssembly
<button @onclick="UpdateMessage">Click me</button> @message
@code {
private string message = "Not clicked yet.";
private void UpdateMessage()
{
message = "Somebody clicked me!";
}
}
If using the preceding component locally in a Blazor Web App, place the component in the client project's Pages
folder. The client project is the solution's project with a name that ends in .Client
. When the app is running, navigate to /render-mode-3
in the browser's address bar.
The Auto render mode determines how to render the component at runtime. The component is initially rendered server-side with interactivity using the Blazor Server hosting model. The .NET runtime and app bundle are downloaded to the client in the background and cached so that they can be used on future visits. Components using the automatic render mode must be built from a separate client project that sets up the Blazor WebAssembly host.
In the following example, the component is interactive throughout the process. The button calls the UpdateMessage
method when selected. The value of message
changes, and the component is rerendered to update the message in the UI. Initially, the component is rendered interactively from the server, but on subsequent visits it's rendered from the client after the .NET runtime and app bundle are downloaded and cached.
RenderMode4.razor
:
@page "/render-mode-4"
@rendermode RenderMode.InteractiveAuto
<button @onclick="UpdateMessage">Click me</button> @message
@code {
private string message = "Not clicked yet.";
private void UpdateMessage()
{
message = "Somebody clicked me!";
}
}
If using the preceding component locally in a Blazor Web App, place the component in the client project's Pages
folder. The client project is the solution's project with a name that ends in .Client
. When the app is running, navigate to /render-mode-4
in the browser's address bar.
Render modes propagate down the component hierarchy.
Rules for applying render modes:
- The default render mode is Static.
- The interactive Server (
InteractiveServer
), WebAssembly (InteractiveWebAssembly
), and automatic (InteractiveAuto
) render modes can be used from a Static component, including using different render modes for sibling components. - You can't switch to a different interactive render mode in a child component. For example, a Server component can't be a child of a WebAssembly component.
- Parameters passed to an interactive child component from a Static parent must be JSON serializable. This means that you can't pass render fragments or child content from a Static parent component to an interactive child component.
The following examples use a non-routable, non-page SharedMessage
component. The render mode agnostic SharedMessage
component doesn't apply a render mode with an @attribute
directive. If you're testing these scenarios with a Blazor Web App, place the following component in the app's Components
folder.
SharedMessage.razor
:
<p>@Greeting</p>
<button @onclick="UpdateMessage">Click me</button> @message
<p>@ChildContent</p>
@code {
private string message = "Not clicked yet.";
[Parameter]
public RenderFragment? ChildContent { get; set; }
[Parameter]
public string Greeting { get; set; } = "Hello!";
private void UpdateMessage()
{
message = "Somebody clicked me!";
}
}
If the SharedMessage
component is placed in a statically-rendered parent component, the SharedMessage
component is also rendered statically and isn't interactive. The button doesn't call UpdateMessage
, and the message isn't updated.
RenderMode5.razor
:
@page "/render-mode-5"
<SharedMessage />
If the SharedMessage
component is placed in a component that defines the render mode, it inherits the applied render mode.
In the following example, the SharedMessage
component is interactive over a SignalR connection to the client. The button calls UpdateMessage
, and the message is updated.
RenderMode6.razor
:
@page "/render-mode-6"
@rendermode RenderMode.InteractiveServer
<SharedMessage />
In the following example, both SharedMessage
components are prerendered (by default) and appear when the page is displayed in the browser.
- The first
SharedMessage
component with Server rendering is interactive after the SignalR circuit is established. - The second
SharedMessage
component with WebAssembly rendering is interactive after the Blazor app bundle is downloaded and the .NET runtime is active on the client.
RenderMode7.razor
:
@page "/render-mode-7"
<SharedMessage @rendermode="RenderMode.InteractiveServer" />
<SharedMessage @rendermode="RenderMode.InteractiveWebAssembly" />
Note
The preceding syntax will be simplified at the release of .NET 8 in November to:
<SharedMessage @rendermode="InteractiveServer" />
<SharedMessage @rendermode="InteractiveWebAssembly" />
The following example demonstrates an interactive child component that takes a parameter. Parameters must be serializable.
RenderMode8.razor
:
@page "/render-mode-8"
<SharedMessage @rendermode="RenderMode.InteractiveServer" Greeting="Welcome!" />
Note
The preceding syntax will be simplified at the release of .NET 8 in November to:
<SharedMessage @rendermode="InteractiveServer" Greeting="Welcome!" />
Non-serializable component parameters, such as child content or a render fragment, are not supported. In the following example, passing child content to the SharedMessage
component results in a runtime error.
RenderMode9.razor
:
@page "/render-mode-9"
<SharedMessage @rendermode="RenderMode.InteractiveServer">
Child content
</SharedMessage>
❌ Error:
:::no-loc text="System.InvalidOperationException: Cannot pass the parameter 'ChildContent' to component 'SharedMessage' with rendermode 'InteractiveServerRenderMode'. This is because the parameter is of the delegate type 'Microsoft.AspNetCore.Components.RenderFragment', which is arbitrary code and cannot be serialized.":::
To circumvent the preceding limitation, wrap the child component in another component that doesn't have the parameter. This is the approach taken in the Blazor Web App project template with the Routes
component (Components/Routes.razor
) to wrap the Blazor router.
WrapperComponent.razor
:
<SharedMessage>
Child content
</SharedMessage>
RenderMode10.razor
:
@page "/render-mode-10"
<WrapperComponent @rendermode="RenderMode.InteractiveServer" />
Note
The preceding syntax will be simplified at the release of .NET 8 in November to:
<WrapperComponent @rendermode="InteractiveServer" />
In the preceding example:
- The child content is passed to the
SharedMessage
component without generating a runtime error. - The
SharedMessage
component renders interactively on the server.
Don't try to apply a different interactive render mode to a child component than its parent's render mode.
The following component results in a runtime error when the component is rendered:
RenderMode11.razor
:
@page "/render-mode-11"
@rendermode RenderMode.InteractiveServer
<SharedMessage @rendermode="RenderMode.InteractiveWebAssembly" />
❌ Error:
:::no-loc text="Cannot create a component of type 'BlazorSample.Components.SharedMessage' because its render mode 'Microsoft.AspNetCore.Components.Web.InteractiveWebAssemblyRenderMode' is not supported by interactive server-side rendering.":::
To set the render mode for the entire app, indicate the render mode at the highest-level component in the app's component hierarchy that isn't a root component (root components can't be interactive). Typically, this is where the Routes
component is used in the App
component (Components/App.razor
) for apps based on the Blazor Web App project template:
<Routes @rendermode="RenderMode.InteractiveServer" />
Note
The preceding syntax will be simplified at the release of .NET 8 in November to:
<Routes @rendermode="InteractiveServer" />
The Blazor router propagates its render mode to the pages it routes. The pages aren't technically child components of the router, but when the routes are discovered at runtime for the router, they inherit the router's render mode.
You also typically must set the same interactive render mode on the HeadOutlet
component, which is also found in the App
component of a Blazor Web App generated from the project template:
<HeadOutlet @rendermode="RenderMode.InteractiveServer" />
Note
The preceding syntax will be simplified at the release of .NET 8 in November to:
<HeadOutlet @rendermode="InteractiveServer" />
Note
Making a root component interactive, such as the App
component, isn't supported because the Blazor script may be evaluated multiple times.
To enable root-level interactivity when creating a Blazor Web App:
- Visual Studio: Set the Interactivity location dropdown list to Global.
- .NET CLI: Use the
-ai|--all-interactive
option.
For more information, see xref:blazor/tooling.
Configure additional assemblies to use for discovering routable Razor components for static server rendering using the AddAdditionalAssemblies
method chained to xref:Microsoft.AspNetCore.Builder.RazorComponentsEndpointRouteBuilderExtensions.MapRazorComponents%2A.
The following example includes the assembly of the DifferentAssemblyCounter
component:
app.MapRazorComponents<App>()
.AddAdditionalAssemblies(typeof(DifferentAssemblyCounter).Assembly);
The @rendermode
directive takes a single parameter that's a static instance of type xref:Microsoft.AspNetCore.Components.IComponentRenderMode. The @rendermode
directive attribute can take any render mode instance, static or not. The Blazor framework provides the xref:Microsoft.AspNetCore.Components.Web.RenderMode static class with some predefined render modes for convenience, but you can create your own.
Consider the following example that creates a shorthand interactive server render mode without prerendering:
public static IComponentRenderMode InteractiveServerWithoutPrerendering { get; } =
new InteractiveServerRenderMode(prerender: false);
Use the shorthand render mode in components:
@rendermode InteractiveServerWithoutPrerendering
Note
Normally, a component uses the following @attribute
directive to disable prerendering:
@attribute [RenderModeInteractiveServer(prerender: false)]
For more information, see the Prerendering section.
At the moment, the shorthand render mode approach is probably only useful for reducing the verbosity of specifying the prerender
flag. The shorthand approach might be more useful in the future if additional flags become available for interactive rendering and you would like to create shorthand render modes with different combinations of flags.