In the dotNet framework, the implementation of WebClient is based on HttpWebRequest.
Is it the same in cshtml5, and can I use HttpWebRequest directly? Are there any limitations when using it (in particular: can I use it for streaming too)?
Hi. I'm searching for a way to access the hosting .html file. I'd like to get the content of a div that I place just after <div id="log"> in the generated index.html file. Of course I could use WebClient to do that. But that would make a second http request for the same file. Is there any ...