这里的情况是我连接到wifi,我的应用程序正在计算路线。它应该仍然有效,因为它支持离线导航。应该有一种方法可以强制SDK即使在线也能脱机工作。谢谢!
这是我得到的日志。
[Export]
public class SomeClient {
public SomeClient([Import("x")]IDep dep) {}
}
[Export("x", typeof(IDep))]
public class X : IDep {}
[Export("y", typeof(IDep))]
public class Y : IDep {}
// in composition root:
using DryIoc.MefAttributedModel;
container = new Container().WithMefAttributedModel();
container.RegisterExports(
typeof(SomeClient),
typeof(X),
typeof(Y));
container.Resolve<SomeClient>(); // will inject X
答案 0 :(得分:0)
我在一周内一直为此工作,最后解决了这个问题。所以我在公司的网络下工作,因此非常没有效果。
所以我所做的是在WiFi设置下添加代理服务器,因为所有外部网络请求都应通过代理,否则会出现SSL错误。