Noemax FastInfoset.NET
XmlFastInfosetReader Constructor(Stream,XmlReaderSettings,FastInfosetCompression)
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class > XmlFastInfosetReader Constructor : XmlFastInfosetReader Constructor(Stream,XmlReaderSettings,FastInfosetCompression)






input

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

settings
XmlReaderSettings object to configure the new XmlFastInfosetReader instance.
compression
The compression algorithm to be used for decompressing the data.
Initializes a new instance of the XmlFastInfosetReader class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal input As Stream, _
   ByVal settings As XmlReaderSettings, _
   ByVal compression As FastInfosetCompression _
)
Visual Basic (Usage)Copy Code
Dim input As Stream
Dim settings As XmlReaderSettings
Dim compression As FastInfosetCompression
 
Dim instance As New XmlFastInfosetReader(input, settings, compression)
C# 
public XmlFastInfosetReader( 
   Stream input,
   XmlReaderSettings settings,
   FastInfosetCompression compression
)
Delphi 
public XmlFastInfosetReader( 
    input: Stream;
    settings: XmlReaderSettings;
    compression: FastInfosetCompression
); 
JScript 
public function XmlFastInfosetReader( 
   input : Stream,
   settings : XmlReaderSettings,
   compression : FastInfosetCompression
);
Managed Extensions for C++ 
public: XmlFastInfosetReader( 
   Stream* input,
   XmlReaderSettings* settings,
   FastInfosetCompression compression
)
C++/CLI 
public:
XmlFastInfosetReader( 
   Stream^ input,
   XmlReaderSettings^ settings,
   FastInfosetCompression compression
)

Parameters

input

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

settings
XmlReaderSettings object to configure the new XmlFastInfosetReader instance.
compression
The compression algorithm to be used for decompressing the data.

See Also