c#(更具体地说是xna)我如何通过http请求xml文件? 不需要支持xbox
我正在 XNA 中开发一款游戏,我需要它来从我们的网站获取服务器列表。
所以我只需要向 http://play.feedthezombie.com 发送一个 http 请求/?want=servers&enc=xml 并将比赛作为字符串或 xml 对象获取。
有什么线索吗?
So im working on a game in XNA and i need it to get a server list off our site.
so i just need to do a http request to http://play.feedthezombie.com/?want=servers&enc=xml
and get the contest as either a string or xml object.
any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 XmlDocument.Load 方法。 它可以从 URL 加载 XML。
Use XmlDocument.Load method. It can load XML from an URL.
您可以在 Windows 上调用您喜欢的任何 .NET 框架类,包括执行网络访问和 XML 处理的类。 在 Xbox 上,您只能使用 XNA 提供的内容,它是 .NET 框架的子集,并且唯一的网络访问是通过 Xbox Live API 进行的。
You can call any .NET framework classes you like on Windows, including ones that do network access and XML handling. On Xbox you are limited to what XNA provides to you which is a subset of the .NET framework and the only network access is through the Xbox Live APIs.