XmlDictionaryReader.CreateTextReader Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cria uma instância de XmlDictionaryReader.
Sobrecargas
CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose) |
Cria uma instância de XmlDictionaryReader. |
CreateTextReader(Byte[], XmlDictionaryReaderQuotas) |
Cria uma instância de XmlDictionaryReader. |
CreateTextReader(Stream, XmlDictionaryReaderQuotas) |
Cria uma instância de XmlDictionaryReader. |
CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas) |
Cria uma instância de XmlDictionaryReader. |
CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose) |
Cria uma instância de XmlDictionaryReader. |
Comentários
Essas sobrecargas criam uma instância de XmlDictionaryReader.
CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)
Cria uma instância 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
O fluxo do qual ler.
- encoding
- Encoding
O objeto Encoding que especifica as propriedades de codificação a serem aplicadas.
- quotas
- XmlDictionaryReaderQuotas
O XmlDictionaryReaderQuotas a ser aplicado.
- onClose
- OnXmlDictionaryReaderClose
O delegado a ser chamado quando o leitor está fechado.
Retornos
Uma instância de XmlDictionaryReader.
Comentários
O leitor criado é otimizado para ler texto UTF-8.
Aplica-se a
CreateTextReader(Byte[], XmlDictionaryReaderQuotas)
Cria uma instância 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[]
O buffer do qual ler.
- quotas
- XmlDictionaryReaderQuotas
As cotas aplicadas ao leitor.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
Comentários
O leitor criado é otimizado para ler texto UTF-8.
Aplica-se a
CreateTextReader(Stream, XmlDictionaryReaderQuotas)
Cria uma instância 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
O fluxo do qual ler.
- quotas
- XmlDictionaryReaderQuotas
As cotas aplicadas ao leitor.
Retornos
Uma instância de XmlDictionaryReader.
Comentários
O leitor criado é otimizado para ler texto UTF-8.
Aplica-se a
CreateTextReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas)
Cria uma instância 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[]
O buffer do qual ler.
- offset
- Int32
A posição inicial da qual será feita a leitura no buffer
.
- count
- Int32
O número de bytes que podem ser lidos de buffer
.
- quotas
- XmlDictionaryReaderQuotas
As cotas aplicadas ao leitor.
Retornos
Uma instância de XmlDictionaryReader.
Comentários
O leitor criado é otimizado para ler texto UTF-8.
Aplica-se a
CreateTextReader(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)
Cria uma instância 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[]
O buffer do qual ler.
- offset
- Int32
A posição inicial da qual será feita a leitura no buffer
.
- count
- Int32
O número de bytes que podem ser lidos de buffer
.
- encoding
- Encoding
O objeto Encoding que especifica as propriedades de codificação a serem aplicadas.
- quotas
- XmlDictionaryReaderQuotas
O XmlDictionaryReaderQuotas a ser aplicado.
- onClose
- OnXmlDictionaryReaderClose
O delegado a ser chamado quando o leitor está fechado.
Retornos
Uma instância de XmlDictionaryReader.
Comentários
O leitor criado é otimizado para ler texto UTF-8.