XmlDictionaryReaderQuotas.MaxStringContentLength Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the maximum string length returned by the reader.
public:
property int MaxStringContentLength { int get(); void set(int value); };
public int MaxStringContentLength { get; set; }
member this.MaxStringContentLength : int with get, set
Public Property MaxStringContentLength As Integer
Property Value
The maximum string length returned by the reader. The default is 8192.
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 limits the length of strings that are created and returned by various APIs. When calling Read
() and checking the Value
property, the reader chunks string values into manageable pieces (when in streaming mode). However, calling ReadContentAsString
() concatenates all these pieces and return one large string. In the binary format, if the value of an element node is a sequence of dictionary string IDs then the values of those strings are concatenated. This can be an extremely large expansion and is mitigated by this limit.