You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main sticking point for all of the solutions above is that they do not support the blazor ObjectReference system. You cannot, without significant hacking, pass DotNetObjectReference to JS or JSObjectReference to C# via any of the systems except the built-in JSON serialization in IJSRuntime. This means that, in order to track and update graphics, we would have to
fall back to our own custom registration dictionary and rewrite all the update calls like SetGeometry (again).
OR
have a separate callback to .NET that registers the JSObjectRefs at the Layer/View level.
I really don't like the idea of #1 above and moving further from the built-in object ref system. I am investigating the second idea.
We have discussed many ways of improving the serialization and loading of large data sets
DotNetStreamReference
to pass data as a stream to JavaScript, and read graphics as they come inThe text was updated successfully, but these errors were encountered: