I'd like to know how Blazors stream redering actually works. If I use SSR Blazor and the [StreamRendering] attribute, the HTML produced is sent down to browser in chunks. As I understand these chunks doesn't have to be sent in the order they appear in the HTML document. So my question is how do these chunks of HTML get placed at the correct place in the document? And what does these chunks looks like?I'vent been able to inspect the response in the dev tools of Edge(or Chrome). Why's that?
↧