Do server side assemblies get downloaded in .Net8 Blazor Web App with interactivity type auto

Michael Wells 20 Reputation points
2023-11-03T21:36:15.0733333+00:00

If I create a new .Net 8 Blazor Web App with Interactivity type "Auto" and Interactivity location "Per page/component", do the server-side assemblies ever get downloaded to the client or only the client-side assemblies?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
4,055 questions
Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,647 questions
{count} votes

Accepted answer
  1. Ping Ni-MSFT 4,810 Reputation points Microsoft Vendor
    2023-11-08T07:18:19.1466667+00:00

    Hi @Michael Wells, the server side assemblies seem not to get downloaded to the client. Refer to: Auto render mode

    2 people found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 69,501 Reputation points
    2023-11-06T17:39:52.9766667+00:00

    what do you mean by server code assemblies? The asp.net core code that hosts the server rendering and static file support are not downloaded.

    any dll referenced by the Blazor WASM must be downloaded.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.