WebMessageEncodingBindingElement Constructor ()
Initializes a new instance of the WebMessageEncodingBindingElement class.
Assembly: System.ServiceModel.Web (in System.ServiceModel.Web.dll)
This constructor uses UTF8Encoding as the default character encoding. So use this constructor when you want this character encoding. If you want another character encoding, use the WebMessageEncodingBindingElement(Encoding^) constructor.
This constructor sets default values on the maximum number of readers and writers that are allocated to pools and that are respectively available to process incoming and outgoing messages without allocating new readers or writers. There are 64 readers allocated by default for the MaxReadPoolSize property and there are 16 writers allocated by default for the MaxWritePoolSize property.
Default complexity constraints are also set by this constructor on the XmlDictionaryReaderQuotas associated with this message encoding by the ReaderQuotas property to 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 3.5