Noemax FastInfoset.NET
Create(String) Method
See Also  Send Feedback
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.

Syntax

Visual Basic (Declaration) 
Public Overloads 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
)
Delphi 
public function Create( 
    outputFileName: String
): XmlWriter; static; 
JScript 
public static function Create( 
   outputFileName : String
) : XmlWriter;
Managed Extensions for 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.

See Also