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






Gets and sets the maximum nested node depth.

Syntax

Visual Basic (Declaration) 
Public Property MaxDepth As Integer
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value As Integer
 
instance.MaxDepth = value
 
value = instance.MaxDepth
C# 
public int MaxDepth {get; set;}
Delphi 
public read-write property MaxDepth: Integer; 
JScript 
public function get,set MaxDepth : int
Managed Extensions for C++ 
public: __property int get_MaxDepth();
public: __property void set_MaxDepth( 
   int value
);
C++/CLI 
public:
property int MaxDepth {
   int get();
   void set (    int value);
}

Remarks

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

See Also