Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlDictionaryReaderQuotas::MaxArrayLength Property

 

Gets and sets the maximum allowed array length.

Namespace:   System.Xml
Assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)

public:
property int MaxArrayLength {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The maximum allowed array length. The default is 16384.

Exception Condition
InvalidOperationException

Trying to set the value, but quota values are read-only for this instance.

ArgumentException

Trying to set the value to less than zero.

This quota governs the maximum array length that is created and returned by various API calls. It affects special array APIs as well as byte arrays returned from ReadContentAsBase64(). This limit does not affect the ReadContentAsBase64() override that takes an array to be populated with data.

Note that this property value applies to every step of message processing. This includes some steps that can expand the size of a message or message part. In particular, encryption can dramatically increase the size of a message. When setting this value, you must take this into account.

Instances created with the public constructor have properties that can be set.

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft