-
|
We just migrated our .NET 6 code base to .NET 8 and I am familiarizing myself with what we can do in blazor with the new additions from .NET 7 and 8. We are running Blazor WASM Standalone btw. Earlier we used Again, we are on WASM only, so we can use sync only calls as much as possible |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
IJsInProcessRuntime is the only thing officially supported by Blazor. If you rely on |
Beta Was this translation helpful? Give feedback.
IJsInProcessRuntime is the only thing officially supported by Blazor. If you rely on
[JSImport]and[JSExport]it's not guaranteed that some Blazor features work. That said, if you want the maximum performance (in 99% of the cases you don't need it)[JSImport]and[JSExport]are the way to go.