如何在不使用 System.Net 类的情况下在 C# 中发送 HTTP 请求?

发布于 2024-09-07 16:07:29 字数 428 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆凄凉。 2024-09-14 16:07:29

可能想尝试Indy

Might want to try Indy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文