Intro - Client side (wasm Blazor) Flashcards

1
Q

What is the difference between client side blazor and web assembly blazor?

A

None. They mean the same technology: running a C# SPA over web assembly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is blazor’s release timeline?

A

September 2019 blwazor server side. may 2020 client side. late PWA hybrid native

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What happens to the programs’ DLL when using client side blazor?

A

They are downloaded by the browser in the client.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is not recommended to be used in web assembly blazor?

A

IHttpClientFactory and EF Core

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to share most of the code between server side and wasm blazor?

A

Using a razor class library (targets to .net standard).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which file is not present in the was blazor app and is on server side blazor?

A

_host.cshtml is present on serverside but not on client. Instead the client has the index.html.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What has to be included in the blazor class lib to make it work properly?

A

AspNetCore.Components and “.Web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly