Please enable JavaScript.
Coggle requires JavaScript to display documents.
Blazor C# - Coggle Diagram
Blazor C#
-
Razor
-
-
-
Syntax
-
-
Expressions
-
Explicit
(). E.g. string concats, interpolation
-
-
Blazor SSR
-
-
-
Interactive Server
-
-
WASM interactivity
JIT, AOT pre-compiled ... or mixture
-
InteractiveAuto (initially SSR, then downloaded and then future is WASM)
-
DI
Benefits
-
Dont worry about disposing, leaks - .NET will dispose (via DI Container)
-
-
instead of create instance and manage within component, inject a service from outside
State Management
Techniques
StateHasChanged(), non-UI triggered updates!
Using URLs to pass state
browser history, 2k limit, clutter and confuse user?π
-
wizard, 2k char limit π§ββοΈ
-
-
-
-
-
-
-
-
-
-