HTML only webbrowser in c #?

Any way to tell WebBrowser in C # to only show pages in HTML? I'm trying to create a web scraper, and I don't need pictures that make the process slower than necessary.

+3
source share
2 answers

you will have to minimize basically.

One way would be to create your application in WPF and use the HTML-> XAML conversion process and just leave the tag from the conversion.

+1
source

Why are you using the WebBrowser control to clear the page? If you just need a basic html page, just do a WebRequest and get a response.

+5
source

Source: https://habr.com/ru/post/1756273/


All Articles