XmlDictionaryReader.CreateTextReader Méthode

Définition

Crée une instance de XmlDictionaryReader.

Surcharges

CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Crée une instance de XmlDictionaryReader.

CreateTextReader(Byte[], XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

CreateTextReader(Stream, XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Crée une instance de XmlDictionaryReader.

Remarques

Ces surcharges créent une instance de XmlDictionaryReader.

CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Crée une instance de XmlDictionaryReader.

public:
 static System::Xml::XmlDictionaryReader ^ CreateTextReader(System::IO::Stream ^ stream, System::Text::Encoding ^ encoding, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public static System.Xml.XmlDictionaryReader CreateTextReader (System.IO.Stream stream, System.Text.Encoding encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose onClose);
public static System.Xml.XmlDictionaryReader CreateTextReader (System.IO.Stream stream, System.Text.Encoding? encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose? onClose);
static member CreateTextReader : System.IO.Stream * System.Text.Encoding * System.Xml.XmlDictionaryReaderQuotas * System.Xml.OnXmlDictionaryReaderClose -> System.Xml.XmlDictionaryReader
Public Shared Function CreateTextReader (stream As Stream, encoding As Encoding, quotas As XmlDictionaryReaderQuotas, onClose As OnXmlDictionaryReaderClose) As XmlDictionaryReader

Paramètres

stream
Stream

Le flux de données à partir duquel effectuer la lecture.

encoding
Encoding

Objet Encoding qui spécifie les propriétés d'encodage à appliquer.

onClose
OnXmlDictionaryReaderClose

Le délégué à appeler lorsque le lecteur est fermé.

Retours

XmlDictionaryReader

Instance de XmlDictionaryReader.

Remarques

Le lecteur créé est optimisé pour lire le texte UTF-8.

S’applique à

CreateTextReader(Byte[], XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

public:
 static System::Xml::XmlDictionaryReader ^ CreateTextReader(cli::array <System::Byte> ^ buffer, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateTextReader (byte[] buffer, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateTextReader : byte[] * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateTextReader (buffer As Byte(), quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader

Paramètres

buffer
Byte[]

La mémoire tampon à partir de laquelle effectuer la lecture.

quotas
XmlDictionaryReaderQuotas

Les quotas appliqués au lecteur.

Retours

XmlDictionaryReader

Instance de XmlDictionaryReader.

Exceptions

buffer a la valeur null.

Remarques

Le lecteur créé est optimisé pour lire le texte UTF-8.

S’applique à

CreateTextReader(Stream, XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

public:
 static System::Xml::XmlDictionaryReader ^ CreateTextReader(System::IO::Stream ^ stream, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateTextReader (System.IO.Stream stream, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateTextReader : System.IO.Stream * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateTextReader (stream As Stream, quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader

Paramètres

stream
Stream

Le flux de données à partir duquel effectuer la lecture.

quotas
XmlDictionaryReaderQuotas

Les quotas appliqués au lecteur.

Retours

XmlDictionaryReader

Instance de XmlDictionaryReader.

Remarques

Le lecteur créé est optimisé pour lire le texte UTF-8.

S’applique à

CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas)

Crée une instance de XmlDictionaryReader.

public:
 static System::Xml::XmlDictionaryReader ^ CreateTextReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateTextReader (byte[] buffer, int offset, int count, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateTextReader : byte[] * int * int * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateTextReader (buffer As Byte(), offset As Integer, count As Integer, quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader

Paramètres

buffer
Byte[]

La mémoire tampon à partir de laquelle effectuer la lecture.

offset
Int32

La position de départ à partir de laquelle effectuer la lecture dans buffer.

count
Int32

Le nombre d'octets pouvant être lus à partir de buffer.

quotas
XmlDictionaryReaderQuotas

Les quotas appliqués au lecteur.

Retours

XmlDictionaryReader

Instance de XmlDictionaryReader.

Remarques

Le lecteur créé est optimisé pour lire le texte UTF-8.

S’applique à

CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Crée une instance de XmlDictionaryReader.

public:
 static System::Xml::XmlDictionaryReader ^ CreateTextReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Text::Encoding ^ encoding, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public static System.Xml.XmlDictionaryReader CreateTextReader (byte[] buffer, int offset, int count, System.Text.Encoding? encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose? onClose);
public static System.Xml.XmlDictionaryReader CreateTextReader (byte[] buffer, int offset, int count, System.Text.Encoding encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose onClose);
static member CreateTextReader : byte[] * int * int * System.Text.Encoding * System.Xml.XmlDictionaryReaderQuotas * System.Xml.OnXmlDictionaryReaderClose -> System.Xml.XmlDictionaryReader
Public Shared Function CreateTextReader (buffer As Byte(), offset As Integer, count As Integer, encoding As Encoding, quotas As XmlDictionaryReaderQuotas, onClose As OnXmlDictionaryReaderClose) As XmlDictionaryReader

Paramètres

buffer
Byte[]

La mémoire tampon à partir de laquelle effectuer la lecture.

offset
Int32

La position de départ à partir de laquelle effectuer la lecture dans buffer.

count
Int32

Le nombre d'octets pouvant être lus à partir de buffer.

encoding
Encoding

Objet Encoding qui spécifie les propriétés d'encodage à appliquer.

onClose
OnXmlDictionaryReaderClose

Le délégué à appeler lorsque le lecteur est fermé.

Retours

XmlDictionaryReader

Instance de XmlDictionaryReader.

Remarques

Le lecteur créé est optimisé pour lire le texte UTF-8.

S’applique à