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






output
The stream to which you want to write.
closeOutput
If set to true writer will close the output stream when closed.
Initializes a new instance of the XmlFastInfosetWriter class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal output As Stream, _
   ByVal closeOutput As Boolean _
)
Visual Basic (Usage)Copy Code
Dim output As Stream
Dim closeOutput As Boolean
 
Dim instance As New XmlFastInfosetWriter(output, closeOutput)
C# 
public XmlFastInfosetWriter( 
   Stream output,
   bool closeOutput
)
Delphi 
public XmlFastInfosetWriter( 
    output: Stream;
    closeOutput: Boolean
); 
JScript 
public function XmlFastInfosetWriter( 
   output : Stream,
   closeOutput : boolean
);
Managed Extensions for C++ 
public: XmlFastInfosetWriter( 
   Stream* output,
   bool closeOutput
)
C++/CLI 
public:
XmlFastInfosetWriter( 
   Stream^ output,
   bool closeOutput
)

Parameters

output
The stream to which you want to write.
closeOutput
If set to true writer will close the output stream when closed.

See Also