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






input

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

settings
XmlReaderSettings object to configure the new XmlFastInfosetReader instance.
Initializes a new instance of the XmlFastInfosetReader class.

Syntax

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

Parameters

input

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

settings
XmlReaderSettings object to configure the new XmlFastInfosetReader instance.

See Also