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

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -