| Visual Basic (Declaration) | |
|---|---|
Public Overloads Sub Init( _ ByVal input As Stream, _ ByVal compression As FastInfosetCompression _ ) | |
| Visual Basic (Usage) | |
|---|---|
Dim instance As XmlFastInfosetReader Dim input As Stream Dim compression As FastInfosetCompression instance.Init(input, compression) | |
| C# | |
|---|---|
public void Init( Stream input, FastInfosetCompression compression ) | |
| Delphi | |
|---|---|
public procedure Init( input: Stream; compression: FastInfosetCompression ); | |
| JScript | |
|---|---|
public function Init( input : Stream, compression : FastInfosetCompression ); | |
| Managed Extensions for C++ | |
|---|---|
public: void Init( Stream* input, FastInfosetCompression compression ) | |
| C++/CLI | |
|---|---|
public: void Init( Stream^ input, FastInfosetCompression compression ) | |
Parameters
- input
The stream containing the Fast Infoset encoded XML data to read.
- compression
- The compression algorithm to decompress the data.
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.