XmlDictionaryReader.CreateTextReader Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea una instancia de XmlDictionaryReader.
Sobrecargas
CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose) |
Crea una instancia de XmlDictionaryReader. |
CreateTextReader(Byte[], XmlDictionaryReaderQuotas) |
Crea una instancia de XmlDictionaryReader. |
CreateTextReader(Stream, XmlDictionaryReaderQuotas) |
Crea una instancia de XmlDictionaryReader. |
CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas) |
Crea una instancia de XmlDictionaryReader. |
CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose) |
Crea una instancia de XmlDictionaryReader. |
Comentarios
Estas sobrecargas crean una instancia de XmlDictionaryReader.
CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)
Crea una instancia 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
Parámetros
- stream
- Stream
Secuencia a partir de la cual se lee.
- encoding
- Encoding
El objeto Encoding que especifica las propiedades de codificación que se van a aplicar.
- quotas
- XmlDictionaryReaderQuotas
XmlDictionaryReaderQuotas que se va a aplicar.
- onClose
- OnXmlDictionaryReaderClose
El delegado al que se va a llamar cuando se cierre el lector.
Devoluciones
Instancia de XmlDictionaryReader.
Comentarios
El lector creado está optimizado para leer texto UTF-8.
Se aplica a
CreateTextReader(Byte[], XmlDictionaryReaderQuotas)
Crea una instancia 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
Parámetros
- buffer
- Byte[]
El búfer del que se lee.
- quotas
- XmlDictionaryReaderQuotas
Las cuotas que se aplican al lector.
Devoluciones
Instancia de XmlDictionaryReader.
Excepciones
buffer
es null
.
Comentarios
El lector creado está optimizado para leer texto UTF-8.
Se aplica a
CreateTextReader(Stream, XmlDictionaryReaderQuotas)
Crea una instancia 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
Parámetros
- stream
- Stream
Secuencia a partir de la cual se lee.
- quotas
- XmlDictionaryReaderQuotas
Las cuotas que se aplican al lector.
Devoluciones
Instancia de XmlDictionaryReader.
Comentarios
El lector creado está optimizado para leer texto UTF-8.
Se aplica a
CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas)
Crea una instancia 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
Parámetros
- buffer
- Byte[]
El búfer del que se lee.
- offset
- Int32
La posición inicial de la que leer en buffer
.
- count
- Int32
Número de bytes que se pueden leer de buffer
.
- quotas
- XmlDictionaryReaderQuotas
Las cuotas que se aplican al lector.
Devoluciones
Instancia de XmlDictionaryReader.
Comentarios
El lector creado está optimizado para leer texto UTF-8.
Se aplica a
CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)
Crea una instancia 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
Parámetros
- buffer
- Byte[]
El búfer del que se lee.
- offset
- Int32
La posición inicial de la que leer en buffer
.
- count
- Int32
Número de bytes que se pueden leer de buffer
.
- encoding
- Encoding
El objeto Encoding que especifica las propiedades de codificación que se van a aplicar.
- quotas
- XmlDictionaryReaderQuotas
XmlDictionaryReaderQuotas que se va a aplicar.
- onClose
- OnXmlDictionaryReaderClose
El delegado al que se va a llamar cuando se cierre el lector.
Devoluciones
Instancia de XmlDictionaryReader.
Comentarios
El lector creado está optimizado para leer texto UTF-8.