1

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?

4

2 回答 2

3

Use XmlDocument.Load method. It can load XML from an URL.

于 2008-10-14T17:52:40.033 回答
1

您可以在 Windows 上调用任何您喜欢的 .NET 框架类,包括进行网络访问和 XML 处理的类。在 Xbox 上,您仅限于 XNA 为您提供的内容,它是 .NET 框架的一个子集,并且唯一的网络访问是通过 Xbox Live API。

于 2008-10-14T18:33:20.230 回答