partizanos
partizanos

Reputation: 1126

blazor without web assembly

Disclaimer: I am new in blazor and .NET.

My question: Is it possible to use blazor client/server without webassembly?

My understanding:

Is it the case?

Upvotes: 2

Views: 955

Answers (1)

olabacker
olabacker

Reputation: 1480

Yes, that is the case. What is downloaded with a blazor server application is basically a javascript client which keeps a SignalR connection with the server which serves the content and changes in the application.

Read more here

Upvotes: 4

Related Questions