使用 HttpWebRequest 发送特定数据包
嘿。是否可以在不使用套接字的情况下从 C# 应用程序发送数据包?我想使用 WebClient 或 HttpWebRequest 来将特定格式的数据包发送到服务器。我见过的例子倾向于使用 UDP 客户端。谢谢
Hey. Is it possible to send a packet from a C# application without using sockets? I'd like to use WebClient or HttpWebRequest in order to send specifically formatted packets to a server. Examples I've seen tend to use UDP client. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于“特定格式”的含义。 HttpWebRequest 是 HTTP 协议的 .Net 包装器,本质上不是 UDP,因此除了修改标头等对象数据之外,您无法自定义它发送的数据包。
It depends on what you mean by "Specifically Formatted". HttpWebRequest is a .Net wrapper around the HTTP protocol which is not UDP in nature, so you can not customize the packets it sends other than modifying object data like headers, etc.
您应该查看 IPEndPoint 类,这是设计的用于通过 IP 和端口地址将数据发送到网络端点。这是一个简单的示例,请参阅链接以获取更多详细信息以及带有错误检查的较长示例。
You should look at the IPEndPoint class, this is designed for sending data to an network endpoint by IP and port address. Here is a simple example, see the link for more details and a longer example with error checking.