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






output
The stream to which you want to write. The System.Xml.XmlWriter writes FastInfoset encoded XML and appends it to the specified stream.
Creates a new XmlWriter instance for writing Fast Infoset encoded XML into the specified stream.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Create( _
   ByVal output As Stream _
) As XmlWriter
Visual Basic (Usage)Copy Code
Dim output As Stream
Dim value As XmlWriter
 
value = XmlFastInfosetWriter.Create(output)
C# 
public static XmlWriter Create( 
   Stream output
)
Delphi 
public function Create( 
    output: Stream
): XmlWriter; static; 
JScript 
public static function Create( 
   output : Stream
) : XmlWriter;
Managed Extensions for C++ 
public: static XmlWriter* Create( 
   Stream* output
) 
C++/CLI 
public:
static XmlWriter^ Create( 
   Stream^ output
) 

Parameters

output
The stream to which you want to write. The System.Xml.XmlWriter writes FastInfoset encoded XML and appends it to the specified stream.

Return Value

An XmlWriter object.

See Also