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



inputFileName
The system path to the file containing the FastInfoset encoded XML data.
settings
The XmlReaderSettings object used to configure the new XmlFastInfosetReader instance. This value can be null.
Creates a new XmlReader instance for reading the Fast Infoset encoded XML file using an XmlReaderSettings object.


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

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Function Create( _
   ByVal inputFileName As String, _
   ByVal settings As XmlReaderSettings _
) As XmlReader
Visual Basic (Usage)Copy Code
Dim inputFileName As String
Dim settings As XmlReaderSettings
Dim value As XmlReader
 
value = XmlFastInfosetReader.Create(inputFileName, settings)
C# 
public static XmlReader Create( 
   string inputFileName,
   XmlReaderSettings settings
)
C++/CLI 
public:
static XmlReader Create( 
   String^ inputFileName,
   XmlReaderSettings settings
) 

Parameters

inputFileName
The system path to the file containing the FastInfoset encoded XML data.
settings
The XmlReaderSettings object used to configure the new XmlFastInfosetReader instance. This value can be null.

Return Value

An XmlReader object to read the FastInfoset encoded XML data.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0

See Also