| Visual Basic (Declaration) | |
|---|---|
Public Overloads Shared Function Create( _ ByVal inputFileName As String, _ ByVal settings As XmlReaderSettings _ ) As XmlReader | |
| Visual Basic (Usage) | |
|---|---|
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 ) | |
| Delphi | |
|---|---|
public function Create( inputFileName: String; settings: XmlReaderSettings ): XmlReader; static; | |
| JScript | |
|---|---|
public static function Create( inputFileName : String, settings : XmlReaderSettings ) : XmlReader; | |
| Managed Extensions for C++ | |
|---|---|
public: static XmlReader* Create( string* inputFileName, XmlReaderSettings* settings ) | |
| C++/CLI | |
|---|---|
public: static XmlReader^ Create( String^ inputFileName, XmlReaderSettings^ settings ) | |
Parameters
- inputFileName
- The path to the file with the FastInfoset encoded XML data.
- settings
- The System.Xml.XmlReaderSettings to configure the new XmlFastInfosetReader instance. This value can be null.