WebServiceEndpoint::ReaderQuotas Property
Gets or sets constraints on the complexity of SOAP messages that can be processed by endpoints configured with this binding.
Assembly: System.ServiceModel.Web (in System.ServiceModel.Web.dll)
public: property XmlDictionaryReaderQuotas^ ReaderQuotas { XmlDictionaryReaderQuotas^ get(); void set(XmlDictionaryReaderQuotas^ value); }
| Exception | Condition |
|---|---|
| ArgumentNullException | The value set is null. |
| ArgumentOutOfRangeException | The quota values of XmlDictionaryReaderQuotas are read only. |
| ArgumentException | The quotas set must be positive. |
The complexity constraints protect against a class of denial of service (DOS) attacks that attempt to use message complexity to tie up endpoint processing resources. The properties that express these constraints and their default values (in bytes) are as follows:
MaxDepth = 32
MaxStringContentLength = 8192
MaxArrayLength = 16384
MaxBytesPerRead = 4096
MaxNameTableCharCount = 16384
Available since 4.0