I have read on msdn that the attribute maxStringContentLength of the readerQuotas for a WCF client means:
A positive integer that specifies the maximum characters allowed in XML element content. The default is 8192.
I am probably a bit thick here, but what exactly are they refering to when saying XML element content? Is that the content in one XML element? And would it include any nested child elements? Or is that the limit of each element only without nested elements?
E.g. in the following structure:
<a>
<b>baap</b>
<c>beep</c>
</a>
Would tag a cause an overflow of the maxStringContentLength if baap and beep together were over the limit? Or would only b or c cause one if their respective contents were over the limit? Or am I totally missing something?
Thanks all!
From the MSDN:
It limits the maximum size of a string that is returned, either an XML string or a method that returns a string.