I am using WebView to load my authentication web page. After the successful authentication, I need to get some values from html source content. can anyone helm to read the source html from WebView?.
var webView= new WebView {
Source = "https://www.MyLoginSite.com"
};
I have checked this thread : Xamarin: How to get HTML from page in WebView?
I have written the below code after seeing above thread.
webView.Eval("document.body.innerHTML")
But the Eval is the void function, so how can I read value in C# code-behind or is there any easy alternative method to get entire html content as string?