C#Windows App如何从WebView获取html源代码

时间:2016-04-28 16:35:01

标签: c# windows

如何在c#中获取html源代码表单WebView组件?

1 个答案:

答案 0 :(得分:3)

您可以使用InvokeScriptInvokeScriptAsync方法。确保首先加载页面。

string html = await myWebView.InvokeScriptAsync("eval", new string[] { "document.documentElement.outerHTML;" });
var text = html;