我正在开发一个 Windows Store 应用程序,它使用 Azure MobileServices 在 Azure 中存储数据。只要我不使用代理,一切都可以正常工作,但是一旦通过代理连接到我的移动服务,我就会收到 HttpRequestException:“远程服务器返回错误:(407)需要代理身份验证。”
我正在使用MobileServiceClient类的实例连接到我的移动服务。
public static MobileServiceClient MobileService = new MobileServiceClient(
"https://xxxxxx.azure-mobile.net/",
"xxxxxx"
);
如何使 Windows Store 应用程序使用默认系统代理(如在 IE 的 LAN 设置中指定)连接到 Azure MobileService?
TIA