XmlDictionaryReader.CreateTextReader Метод

Определение

Создает экземпляр класса XmlDictionaryReader.

Перегрузки

CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Создает экземпляр XmlDictionaryReader.

CreateTextReader(Byte[], XmlDictionaryReaderQuotas)

Создает экземпляр XmlDictionaryReader.

CreateTextReader(Stream, XmlDictionaryReaderQuotas)

Создает экземпляр XmlDictionaryReader.

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

Создает экземпляр XmlDictionaryReader.

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

Создает экземпляр XmlDictionaryReader.

Комментарии

Эти перегрузки создают экземпляр класса XmlDictionaryReader.

CreateTextReader(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Создает экземпляр 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

Параметры

stream
Stream

Поток, из которого требуется выполнить чтение.

encoding
Encoding

Объект Encoding, указывающий свойства кодировки, которые нужно применить.

quotas
XmlDictionaryReaderQuotas

Применяемое семейство XmlDictionaryReaderQuotas.

onClose
OnXmlDictionaryReaderClose

Делегат, вызываемый при закрытии модуля чтения.

Возвращаемое значение

XmlDictionaryReader

Экземпляр XmlDictionaryReader.

Комментарии

Созданный модуль чтения оптимизирован для чтения текста в кодировке UTF-8.

Применяется к

CreateTextReader(Byte[], XmlDictionaryReaderQuotas)

Создает экземпляр 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

Параметры

buffer
Byte[]

Буфер, из которого выполняется чтение.

quotas
XmlDictionaryReaderQuotas

Квоты, применимые к этому модулю чтения.

Возвращаемое значение

XmlDictionaryReader

Экземпляр XmlDictionaryReader.

Исключения

buffer имеет значение null.

Комментарии

Созданный модуль чтения оптимизирован для чтения текста в кодировке UTF-8.

Применяется к

CreateTextReader(Stream, XmlDictionaryReaderQuotas)

Создает экземпляр 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

Параметры

stream
Stream

Поток, из которого требуется выполнить чтение.

quotas
XmlDictionaryReaderQuotas

Квоты, применимые к этому модулю чтения.

Возвращаемое значение

XmlDictionaryReader

Экземпляр XmlDictionaryReader.

Комментарии

Созданный модуль чтения оптимизирован для чтения текста в кодировке UTF-8.

Применяется к

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

Создает экземпляр 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

Параметры

buffer
Byte[]

Буфер, из которого выполняется чтение.

offset
Int32

Начальное положение для чтения из параметра buffer.

count
Int32

Число байтов, которое может быть считано из буфера, заданного параметром buffer.

quotas
XmlDictionaryReaderQuotas

Квоты, применимые к этому модулю чтения.

Возвращаемое значение

XmlDictionaryReader

Экземпляр XmlDictionaryReader.

Комментарии

Созданный модуль чтения оптимизирован для чтения текста в кодировке UTF-8.

Применяется к

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

Создает экземпляр 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

Параметры

buffer
Byte[]

Буфер, из которого выполняется чтение.

offset
Int32

Начальное положение для чтения из параметра buffer.

count
Int32

Число байтов, которое может быть считано из буфера, заданного параметром buffer.

encoding
Encoding

Объект Encoding, указывающий свойства кодировки, которые нужно применить.

quotas
XmlDictionaryReaderQuotas

Применяемое семейство XmlDictionaryReaderQuotas.

onClose
OnXmlDictionaryReaderClose

Делегат, вызываемый при закрытии модуля чтения.

Возвращаемое значение

XmlDictionaryReader

Экземпляр XmlDictionaryReader.

Комментарии

Созданный модуль чтения оптимизирован для чтения текста в кодировке UTF-8.

Применяется к