如何在 GeckoFX 60 中处理下载
How to handle downloading in GeckoFX 60
我在 GeckoFX 45.0.34
上有 Jason Shuler 的解决方案 () 运行,现在我想将我的应用程序更新到 GeckoFX 版本 60.0.22
,但是行:
nsILocalFile objTarget = Xpcom.CreateInstance<nsILocalFile>("@mozilla.org/file/local;1");
失败,因为Gecko.nsILocalFile
对象不存在,
如何更新上一行以在 GeckoFX 版本 60.0.22
中工作?
使用nsIFile
代替nsILocalFile
有关详细信息,请参阅 this geckofx issue
我在 GeckoFX 45.0.34
上有 Jason Shuler 的解决方案 () 运行,现在我想将我的应用程序更新到 GeckoFX 版本 60.0.22
,但是行:
nsILocalFile objTarget = Xpcom.CreateInstance<nsILocalFile>("@mozilla.org/file/local;1");
失败,因为Gecko.nsILocalFile
对象不存在,
如何更新上一行以在 GeckoFX 版本 60.0.22
中工作?
使用nsIFile
代替nsILocalFile
有关详细信息,请参阅 this geckofx issue