Noemax FastInfoset.NET
Init(Stream) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class > Init Method : Init(Stream) Method






input

The stream containing the Fast Infoset encoded XML data to read.

Initializes an instance of the XmlFastInfosetReader class.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub Init( _
   ByVal input As Stream _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim input As Stream
 
instance.Init(input)
C# 
public void Init( 
   Stream input
)
Delphi 
public procedure Init( 
    input: Stream
); 
JScript 
public function Init( 
   input : Stream
);
Managed Extensions for C++ 
public: void Init( 
   Stream* input
) 
C++/CLI 
public:
void Init( 
   Stream^ input
) 

Parameters

input

The stream containing the Fast Infoset encoded XML data to read.

Remarks

Initializes the reader and sets it to use the provided stream as input.

This method allows the reuse of the XmlFastInfosetReader for reading from another stream.

See Also