Noemax FastInfoset.NET
MaxNodeContentLength Property
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class : MaxNodeContentLength Property






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

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;}
Delphi 
public read-write property MaxNodeContentLength: Integer; 
JScript 
public function get,set MaxNodeContentLength : int
Managed Extensions for C++ 
public: __property int get_MaxNodeContentLength();
public: __property void set_MaxNodeContentLength( 
   int value
);
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.

See Also