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



outputFileName
The file to which you want to write. The System.Xml.XmlWriter creates a file at the specified path and writes to it FastInfoset encoded XML data. The outputFileName must be a file system path.
Creates a new XmlWriter instance for writing Fast Infoset encoded XML into the specified file.


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

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Function Create( _
   ByVal outputFileName As String _
) As XmlWriter
Visual Basic (Usage)Copy Code
Dim outputFileName As String
Dim value As XmlWriter
 
value = XmlFastInfosetWriter.Create(outputFileName)
C# 
public static XmlWriter Create( 
   string outputFileName
)
C++/CLI 
public:
static XmlWriter Create( 
   String^ outputFileName
) 

Parameters

outputFileName
The file to which you want to write. The System.Xml.XmlWriter creates a file at the specified path and writes to it FastInfoset encoded XML data. The outputFileName must be a file system path.

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