我正在使用WPF应用程序,我可以在app.config中为maxJsonLength设置无限长度吗?如果没有,我可以设置的最大长度是多少?
答案 0 :(得分:2)
MaxJsonLength不能无限制,是一个默认为102400的整数属性。在web.config上设置属性:
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="50000000"/>
</webServices>
</scripting>
</system.web.extensions>
</configuration>
这是一个整数,因此您可以设置的最大值是: 2147483644