调用 System.Net.Sockets.NetworkStream.Write() 时的最大缓冲区限制是多少
调用方法时的最大缓冲区限制是多少
System.Net.Sockets.NetworkStream.Write((Byte[] buffer, Int32 offset, Int32 size)
在Windows 2003 32 位计算机上
。是否建议使用上述方法传输大文件。
问候, 疯牛病
What would be the maximum buffer limit while calling
System.Net.Sockets.NetworkStream.Write((Byte[] buffer, Int32 offset, Int32 size)
method on a Windows 2003 32 bit machine.
Is it recommended to transfer large files using the above method.
Regards,
bse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对其没有任何限制,因此限制实际上只是
Int32
(大约 2GB),由大小决定,但仅建议使用小缓冲区(小于 1MB)。There is no limitation placed upon it so limitation is really just
Int32
(around 2GB) governed by size but it is only recommended to use small buffers (less than 1MB).