gpt4 book ai didi

c# - UdpClient 构造函数抛出 SocketException

转载 作者:行者123 更新时间:2023-11-30 18:04:07 27 4
gpt4 key购买 nike

我在构建指定 IPv4 系列的 UdpClient 对象时遇到异常。这只发生在一台 Windows 7 64 位机器上,其他具有相同操作系统的机器工作正常。

确切的异常(exception)是:

System.Net.Sockets.SocketException (0x80004005): An invalid argument was supplied
at System.Net.Sockets.Socket..ctor(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType)
at System.Net.Sockets.UdpClient.createClientSocket()

SocketException.ErrorCode 是 WSAEINVAL 10022,InvalidArgument。

抛出异常的代码:

this.udpClient = new UdpClient(AddressFamily.InterNetwork);

谁能解释一下这个异常告诉我的是什么? IPv4 怎么会成为新 UDP 客户端的无效参数?

更新:这仅在从网络驱动器运行应用程序时发生。在本地运行它不会导致此异常。

最佳答案

docs建议您在这种情况下检查 SocketException::ErrorCode。那有什么值(value)?应该很有借鉴意义。 Family 参数没问题,我想,否则你会得到 ArgumentException

If you receive a SocketException, use SocketException::ErrorCode to obtain the specific error code. Once you have obtained this code, you can refer to the Windows Sockets version 2 API error code documentation in MSDN for a detailed description of the error.

关于c# - UdpClient 构造函数抛出 SocketException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6498797/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com