如何在不使用 System.Net 类的情况下在 C# 中发送 HTTP 请求?
C# 中是否有一种方法(可能使用某种外部库)来执行 HTTP Web 请求,而不使用内置的 .NET 类(HttpRequest、WebRequest、WebClient...)?
我问这个问题是因为我正在 Unity3D 引擎中开发游戏,该引擎允许您使用大多数 通过 Mono 实现 .NET。但是,其网络播放器不支持 System.Net 命名空间。我需要执行 HTTP 请求(轮询 php 文件)并等待(睡眠)直到收到响应。 Unity3D 提供了自己的 WWW 类,可以执行 Web 请求,但它强制您使用异步回调函数 - 我知道如何使用该函数,但在我们的代码上下文中非常不方便。
所以我正在寻找 System.Net 类的任何替代品,它可以为我做到这一点。任何想法将不胜感激!
Is there a way in C#, perhaps using an external library of some kind, to perform HTTP web requests without using the built-in .NET classes (HttpRequest, WebRequest, WebClient...) ?
I ask because I'm working on a game in the Unity3D engine, which allows you to use most of .NET through Mono. However, the System.Net namespace isn't supported in its web player. I need to do an HTTP request (polling a php file) and wait (sleep) until I've gotten a response. Unity3D provides its own WWW class which can do web requests, but it forces you to use an asynchronous callback function - which I know how to use but is extremely inconvenient in the context of our code.
So I'm looking for any alternative to the System.Net classes which can do this for me. Any ideas would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能想尝试Indy。
Might want to try Indy.