| Visual Basic (Declaration) | |
|---|---|
Public Overloads Shared Function Create( _ ByVal input As Stream, _ ByVal settings As XmlReaderSettings _ ) As XmlReader | |
| Visual Basic (Usage) | |
|---|---|
Dim input As Stream Dim settings As XmlReaderSettings Dim value As XmlReader value = XmlFastInfosetReader.Create(input, settings) | |
| C# | |
|---|---|
public static XmlReader Create( Stream input, XmlReaderSettings settings ) | |
| Delphi | |
|---|---|
public function Create( input: Stream; settings: XmlReaderSettings ): XmlReader; static; | |
| JScript | |
|---|---|
public static function Create( input : Stream, settings : XmlReaderSettings ) : XmlReader; | |
| Managed Extensions for C++ | |
|---|---|
public: static XmlReader* Create( Stream* input, XmlReaderSettings* settings ) | |
| C++/CLI | |
|---|---|
public: static XmlReader^ Create( Stream^ input, XmlReaderSettings^ settings ) | |
Parameters
- input
- The stream containing the FastInfoset encoded XML data.
- settings
- The XmlReaderSettings object used to configure the new XmlFastInfosetReader instance. This value can be null.