.NET Framework Class Library
BasicHttpBinding..::.ReaderQuotas Property

Gets or sets constraints on the complexity of SOAP messages that can be processed by endpoints configured with this binding.

Namespace:  System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
Syntax

Visual Basic (Declaration)
Public Property ReaderQuotas As XmlDictionaryReaderQuotas
Visual Basic (Usage)
Dim instance As BasicHttpBinding
Dim value As XmlDictionaryReaderQuotas

value = instance.ReaderQuotas

instance.ReaderQuotas = value
C#
public XmlDictionaryReaderQuotas ReaderQuotas { get; set; }
Visual C++
public:
property XmlDictionaryReaderQuotas^ ReaderQuotas {
    XmlDictionaryReaderQuotas^ get ();
    void set (XmlDictionaryReaderQuotas^ value);
}
JScript
public function get ReaderQuotas () : XmlDictionaryReaderQuotas
public function set ReaderQuotas (value : XmlDictionaryReaderQuotas)

Property Value

Type: System.Xml..::.XmlDictionaryReaderQuotas
The XmlDictionaryReaderQuotas that specifies the complexity constraints.
Remarks

The complexity constraints provide protection from denial of service (DOS) attacks that attempt to use message complexity to tie up endpoint processing resources. Other complexity constraints include items such as a maximum element depth and a maximum length for string content within the message.

Examples

The following example sets ProxyAddress to application settings.

C#
        BasicHttpBinding binding =
            new BasicHttpBinding();
        XmlDictionaryReaderQuotas readerQuotas = new XmlDictionaryReaderQuotas();
        readerQuotas.MaxArrayLength = 25 * 1024;
        
            binding.ReaderQuotas = readerQuotas;

The value of this property can also be set in the configuration file.

xml
<configuration>
  <system.serviceModel>

    <bindings>
      <basicHttpBinding>
        <binding name="Binding1">
          <readerQuotas maxBytesPerRead ="1000" 
                        maxDepth="100"/>

          <security mode="None" />
        </binding>
      </basicHttpBinding>
    </bindings>

  </system.serviceModel>

</configuration>
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Tags :


Page view tracker