XmlDictionaryReaderQuotas.MaxArrayLength Property

Definition

Gets or sets the maximum allowed array length.

public:
 property int MaxArrayLength { int get(); void set(int value); };
public int MaxArrayLength { get; set; }
member this.MaxArrayLength : int with get, set
Public Property MaxArrayLength As Integer

Property Value

The maximum allowed array length. The default is 16384.

Exceptions

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

Trying to set the value to less than zero.

Remarks

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.

Applies to