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






output
The stream to which you want to write.
Initializes an instance of the XmlFastInfosetWriter class preparing to write into the specified stream.

Syntax

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

Parameters

output
The stream to which you want to write.

Remarks

Initializes the writer and sets it to use the provided stream as output.

This method allows the reuse the XmlFastInfosetWriter for writing to another stream.

See Also