DataContractJsonSerializer.MaxItemsInObjectGraph Property

Definition

Gets the maximum number of items in an object graph that the serializer serializes or deserializes in one read or write call.

public:
 property int MaxItemsInObjectGraph { int get(); };
public int MaxItemsInObjectGraph { get; }
member this.MaxItemsInObjectGraph : int
Public ReadOnly Property MaxItemsInObjectGraph As Integer

Property Value

The maximum number of items to serialize or deserialize.

Exceptions

The number of items exceeds the maximum value.

Remarks

This property can be set using a constructor. For a list, see DataContractJsonSerializer.

The MaxItemsInObjectGraph property specifies the maximum number of objects that the serializer serializes or deserializes in a single ReadObject or WriteObject method call. The method always reads one root object, but this object may have other objects in its data members. Those objects may have other objects. The default is MaxValue. Note that when serializing or deserializing arrays, every array entry counts as a separate object. Also, note that some objects may have a large memory representation, so this quota alone may not be sufficient to prevent Denial of Service attacks. For more information, see Security Considerations for Data. If you need to increase this quota beyond its default value, it is important to do so both on the sending (serializing) and receiving (deserializing) sides. It applies both when reading and writing data.

Applies to