c# - Can I set an unlimited length for maxJsonLength in App.config? -
i using wpf application, can set unlimited length maxjsonlength in app.config? if not, maximum length can set?
the maxjsonlength cannot unlimited, integer property defaults 102400. set property on web.config:
<configuration> <system.web.extensions> <scripting> <webservices> <jsonserialization maxjsonlength="50000000"/> </webservices> </scripting> </system.web.extensions> </configuration>
it integer max value can set is: 2147483644
Comments
Post a Comment