Clarify Blazor Server's C# execution location (#21481)

pull/21490/head
Luke Latham 2021-02-09 06:07:47 -06:00 committed by GitHub
parent f1ce6f3075
commit 1f4b9e9620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -131,8 +131,9 @@ The size of the published app, its *payload size*, is a critical performance fac
Blazor decouples component rendering logic from how UI updates are applied. *Blazor Server* provides support for hosting Razor components on the server in an ASP.NET Core app. UI updates are handled over a [SignalR](xref:signalr/introduction) connection.
The runtime handles:
The runtime stays on the server and handles:
* Executing the app's C# code.
* Sending UI events from the browser to the server.
* Applying UI updates to the rendered component that are sent back by the server.