我正在尝试从 Steam 加载 XML 文件,但它抛出了这个异常 HRESULT: 0xC00CE584。从 localhost 和其他网站加载其他 xml 文件正在工作。我还尝试将所有 XMLSettings 设置为 true,但它不起作用。
这是我的代码:
Uri steamUriTemp = new Uri("http://api.steampowered.com/ISteamNews/GetNewsForApp/v0002/?appid=440&count=3&maxlength=300&format=xml");
var steamXML = await XmlDocument.LoadFromUriAsync(steamUriTemp);
这是我要加载的 XML 文件:http ://api.steampowered.com/ISteamNews/GetNewsForApp/v0002/?appid=440&count=3&maxlength=300&format=xml
这个 xml 文件有问题吗?有解决方法吗?