Noemax FastInfoset.NET Report an issue | Discuss in forums
XmlFastInfosetWriter.Create(Stream,XmlWriterSettings) Method
See Also 
Noemax.FastInfoset Assembly > Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > Create Method : Create(Stream,XmlWriterSettings) Method



output
The stream to which you want to write. The XmlWriter writes Fast Infoset encoded XML and appends it to the specified stream.
settings
The XmlWriterSettings object used to configure the new XmlWriter instance. If this is null (Northing in Visual Basic), a XmlWriterSettings with default settings is used.
Creates a new XmlWriter instance for writing Fast Infoset encoded XML into the specified stream using an XmlWriterSettings object.


Namespace: Noemax.FastInfoset
Assembly: Noemax.FastInfoset (in Noemax.FastInfoset.dll)

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Function Create( _
   ByVal output As Stream, _
   ByVal settings As XmlWriterSettings _
) As XmlWriter
Visual Basic (Usage)Copy Code
Dim output As Stream
Dim settings As XmlWriterSettings
Dim value As XmlWriter
 
value = XmlFastInfosetWriter.Create(output, settings)
C# 
public static XmlWriter Create( 
   Stream output,
   XmlWriterSettings settings
)
C++/CLI 
public:
static XmlWriter Create( 
   Stream^ output,
   XmlWriterSettings settings
) 

Parameters

output
The stream to which you want to write. The XmlWriter writes Fast Infoset encoded XML and appends it to the specified stream.
settings
The XmlWriterSettings object used to configure the new XmlWriter instance. If this is null (Northing in Visual Basic), a XmlWriterSettings with default settings is used.

Return Value

An System.Xml.XmlWriter object.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

See Also