I solved the problem using:
Dim no As NativeObject = WebView1
Dim myString As String = no.RunMethod("stringByEvaluatingJavaScriptFromString:", Array("document.body.innerText")).AsString
In this case I got the innerText because I actually need the strings. If you need the html tags you can use document.body.innerHtml
Thank you.