Noemax FastInfoset.NET Report an issue | Discuss in forums
XmlFastInfosetReader.MaxNodeContentLength Property
See Also 
Noemax.FastInfoset Assembly > Noemax.FastInfoset Namespace > XmlFastInfosetReader Class : MaxNodeContentLength Property



Gets and sets the maximum length of the node content in bytes.


Namespace: Noemax.FastInfoset
Assembly: Noemax.FastInfoset (in Noemax.FastInfoset.dll)

Syntax

Visual Basic (Declaration) 
Public Property MaxNodeContentLength As Integer
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value As Integer
 
instance.MaxNodeContentLength = value
 
value = instance.MaxNodeContentLength
C# 
public int MaxNodeContentLength {get; set;}
C++/CLI 
public:
property int MaxNodeContentLength {
   int get();
   void set (int value);
}

Remarks

This quota sets a limit on the node content length in bytes. This property applies to reading text and binary data content as well as element names, namespace URIs etc.

The default value assigned to this property during initialization of XmlFastInfosetReader is equal to Int32.MaxValue.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

See Also