NetNamedPipeBinding 的 maxReceivedMessageSize 的最大大小是多少?

发布于 2024-07-24 07:39:03 字数 64 浏览 11 评论 0原文

我注意到 2147483647 似乎是 maxReceivedMessageSize 的热门选择,但这就是限制吗?

I noticed that 2147483647 seems to be a popular choice for maxReceivedMessageSize but is this the limit?

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

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

发布评论

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

评论(3

林空鹿饮溪 2024-07-31 07:39:03

不,限制是 Int64.MaxValue 1 即:9223372036854775807

Nope, the limit is Int64.MaxValue1 which is: 9223372036854775807

不寐倦长更 2024-07-31 07:39:03

basicHttpBinding 中的 MaxMessageReceivedSize 似乎是一个 int32 - 将其设置为超过 int32 的最大值会导致:

该工厂缓冲消息,因此消息大小必须在整数值的范围内。
参数名称:bindingElement.MaxReceivedMessageSize

MaxMessageReceivedSize in basicHttpBinding appears to be an int32 - setting it over the max value of an int32 results in:

This factory buffers messages, so the message sizes must be in the range of an integer value.
Parameter name: bindingElement.MaxReceivedMessageSize

小猫一只 2024-07-31 07:39:03

MaxReceivedMessageSizeMaxBufferSize 必须具有相同的值,并且 MaxBufferSizeInt32

MaxReceivedMessageSize and MaxBufferSize must same value and MaxBufferSize is Int32.

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