FastInfoset.NET Class Reference for .NET
Create(Stream,XmlWriterSettings) Method






The stream to which you want to write. The XmlWriter writes Fast Infoset encoded XML and appends it to the specified stream.
The XmlWriterSettings object used to configure the new XmlWriter instance. If this is null (Nothing 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.
Syntax
'Declaration
 
Public Overloads Shared Shadows Function Create( _
   ByVal output As System.IO.Stream, _
   ByVal settings As System.Xml.XmlWriterSettings _
) As System.Xml.XmlWriter
'Usage
 
Dim output As System.IO.Stream
Dim settings As System.Xml.XmlWriterSettings
Dim value As System.Xml.XmlWriter
 
value = XmlFastInfosetWriter.Create(output, settings)
public new static System.Xml.XmlWriter Create( 
   System.IO.Stream output,
   System.Xml.XmlWriterSettings settings
)
public function Create( 
    output: System.IO.Stream;
    settings: System.Xml.XmlWriterSettings
): System.Xml.XmlWriter; static; 
public hide static function Create( 
   output : System.IO.Stream,
   settings : System.Xml.XmlWriterSettings
) : System.Xml.XmlWriter;
public: new static System.Xml.XmlWriter* Create( 
   System.IO.Stream* output,
   System.Xml.XmlWriterSettings* settings
) 
public:
new static System.Xml.XmlWriter^ Create( 
   System.IO.Stream^ output,
   System.Xml.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 (Nothing in Visual Basic), a XmlWriterSettings with default settings is used.

Return Value

An System.Xml.XmlWriter object.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

XmlFastInfosetWriter Class
XmlFastInfosetWriter Members
Overload List

Send Feedback