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






inputFileName
The system path to the file containing the Fast Infoset encoded XML data.
Creates a new XmlReader instance for reading the Fast Infoset encoded XML file.

Syntax

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

Parameters

inputFileName
The system path to the file containing the Fast Infoset encoded XML data.

Return Value

An System.Xml.XmlReader object to read the Fast Infoset encoded XML data.

See Also