Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 GeckoFX 中显示内存中的 HTML 源文件 - 保存在变量中。
我想要做的是使用 WebClient 下载网页并在 GeckoFX 中显示生成的 HTML。
我知道我可以使用 Geckofx.Navigate ...但是 Tor 的代理设置无法正常工作,这将作为一个软糖,直到我让代理的东西正常工作。
geckofx 21.0-0.2 有一个新方法GeckoWebBrowser::LoadHtml(string content, string url)你可以试试。
GeckoWebBrowser::LoadHtml(string content, string url)
如果这不能按照您想要的方式工作,那么按照 John Hatton 的建议,将其保存到磁盘上的临时文件中。(请注意不要在导航完成之前删除文件。Geckofx.Navigate 方法是异步的。)
只需将 HTML 保存到临时文件中,然后导航到该文件即可。