Blazor wasm in memory question #25927
Answered
by
SteveSandersonMS
andersson09
asked this question in
General
-
Hey, just a question regarding state in blazor wasm for a production site. Can in memory variables during runtime be read using a tool? I know variables known at compile time can be read (https://www.forcepoint.com/blog/x-labs/analyzing-webassembly-binaries), but for example can the counter increment (private int currentCount = 0;) from the demo be known after it has been clicked? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
SteveSandersonMS
Sep 17, 2020
Replies: 1 comment 3 replies
-
Yes, definitely. As a user, you can use the browser dev tools to read the .NET heap directly (for example, by looking at |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
andersson09
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, definitely. As a user, you can use the browser dev tools to read the .NET heap directly (for example, by looking at
Module.HEAP8
in the JS console).