In WCF WebApi (Preview 6), Many of the WCF binding attributes have been moved into the configuration class. For example:
var config = new HttpConfiguration {MaxReceivedMessageSize = 250001};
What are the corresponding settings for <readerQuotas>
? For example, how would I setup a configuration like:
<binding name="largeLimits" maxReceivedMessageSize="250001">
<readerQuotas maxStringContentLength="2147483647"/>
</binding>