是否可以在 C# 中设置 UdpClient ReceiveBufferSize 属性?
我想更改udpclient receivebuffersize以防止接收udp数据包时缓冲区溢出。是否可以在c#中更改它。实际属性是 UdpClient.Client.ReceiveBufferSize。我必须使用其他方法吗?
谢谢。
I want to change udpclient receivebuffersize in order to prevent buffer overflow when receiving udp packets. is it possible to change it in c#. The actual property is UdpClient.Client.ReceiveBufferSize. Do i have to use other method?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够执行以下操作:
You should be able to doing the following:
我不知道这是否有帮助,但看起来
UdpClient
允许您提供自己的Socket
。在内部,UdpClient
使用以下语句创建Socket
:在
Connect()
中,它检查Client
是否已经已设置,如果已设置,则使用该 Socket 进行连接。I don't know whether this helps, but it looks like
UdpClient
allows you to provide your ownSocket
. Internally,UdpClient
creates theSocket
with this statement:In the
Connect()
, it checks whetherClient
has already been set and, if so, uses thatSocket
to connect to.