I was searching how to update the maximum json serialization size in web.config, and I have found this famous post: Can I set an unlimited length for maxJsonLength in web.config?
What I would like to ask is, under the accepted answer, there are comments about the maximum size: 2147483647 vs 2147483644
And one of the comments said they are practically the same because 2147483644 is the maximum integer divisible by 1024 in range.
Does that mean, jsonSerialization attribute value must always be divisible 1024? For example if I set it to 1025, 1026...2047, is it the same as setting it to 1024? And why is it so?