【发布时间】:2016-01-31 00:47:58
【问题描述】:
是否可以将 WebView 的内容作为字符串获取?
我尝试使用:
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(Constants.LOGIN_URL);
HttpWebResponse response = (HttpWebResponse)await httpWebRequest.GetResponseAsync();
但我没有得到我想要的,因为 webview 存储了会话等。
如果可能的话,我想要一种从网站获取登录用户数据的方法。
【问题讨论】:
标签: android webview xamarin xamarin.forms