.NET Framework - 打开 UDP 端口而不指定端口号

发布于 2024-10-11 21:46:53 字数 161 浏览 2 评论 0原文

有没有办法在 .NET Framework 中打开 UDP 端口而不指定端口号,以便框架为您找到一个空闲端口?

就像Java使用时一样:

public ServerSocket(int port),

with port = 0。

Is there a way to open an UDP port in .NET Framework without specifying port number, so the Framework finds a free port to you?

Just like Java when using:

public ServerSocket(int port),

with port = 0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

黑白记忆 2024-10-18 21:46:53

它的工作原理与您的 Java 示例非常相似:

var udpClient = new UdpClient(0);
IPEndPoint remoteEP = null;
byte[] data = udp.Receive( ref remoteEP );

查看 netstat 似乎每次都会分配不同的端口。

It works very similar to your Java example:

var udpClient = new UdpClient(0);
IPEndPoint remoteEP = null;
byte[] data = udp.Receive( ref remoteEP );

Looking at netstat it appears that a different port is allocated each time.

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