XmlDictionaryReader.CreateBinaryReader 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 que possa ler o Formato XML Binário do .NET.
Sobrecargas
Comentários
Essas sobrecargas criam uma instância que XmlDictionaryReader pode ler o formato XML binário do .NET.
CreateBinaryReader(Byte[], XmlDictionaryReaderQuotas)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(cli::array <System::Byte> ^ buffer, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateBinaryReader : byte[] * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (buffer As Byte(), quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader
Parâmetros
- buffer
- Byte[]
O buffer do qual ler.
- quotas
- XmlDictionaryReaderQuotas
As cotas que se aplicam a essa operação.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Stream, XmlDictionaryReaderQuotas)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(System::IO::Stream ^ stream, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateBinaryReader : System.IO.Stream * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (stream As Stream, quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader
Parâmetros
- stream
- Stream
O fluxo do qual ler.
- quotas
- XmlDictionaryReaderQuotas
As cotas que se aplicam a essa operação.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
stream
é null
.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(System::IO::Stream ^ stream, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateBinaryReader : System.IO.Stream * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (stream As Stream, dictionary As IXmlDictionary, quotas As XmlDictionaryReaderQuotas) As XmlDictionaryReader
Parâmetros
- stream
- Stream
O fluxo do qual ler.
- dictionary
- IXmlDictionary
XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
As cotas que se aplicam a essa operação.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
stream
ou quotas
é null
.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Byte[], Int32, Int32, XmlDictionaryReaderQuotas)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateBinaryReader : byte[] * int * int * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (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 que se aplicam a essa operação.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
count
é menor que zero ou maior que o tamanho do buffer menos o deslocamento.
- ou -
offset
é menor que zero ou maior que o tamanho do buffer.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(System::IO::Stream ^ stream, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::XmlBinaryReaderSession ^ session);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession session);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession? session);
static member CreateBinaryReader : System.IO.Stream * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas * System.Xml.XmlBinaryReaderSession -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (stream As Stream, dictionary As IXmlDictionary, quotas As XmlDictionaryReaderQuotas, session As XmlBinaryReaderSession) As XmlDictionaryReader
Parâmetros
- stream
- Stream
O fluxo do qual ler.
- dictionary
- IXmlDictionary
XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
As cotas que se aplicam a essa operação.
- session
- XmlBinaryReaderSession
XmlBinaryReaderSession a ser usado.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
stream
é null
.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas);
static member CreateBinaryReader : byte[] * int * int * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (buffer As Byte(), offset As Integer, count As Integer, dictionary As IXmlDictionary, 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
.
- dictionary
- IXmlDictionary
XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
As cotas que se aplicam a essa operação.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
- ou -
offset
é menor que zero ou maior que o tamanho do buffer.
count
é menor que zero ou maior que o tamanho do buffer menos o deslocamento.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(System::IO::Stream ^ stream, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::XmlBinaryReaderSession ^ session, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession? session, System.Xml.OnXmlDictionaryReaderClose? onClose);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (System.IO.Stream stream, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession session, System.Xml.OnXmlDictionaryReaderClose onClose);
static member CreateBinaryReader : System.IO.Stream * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas * System.Xml.XmlBinaryReaderSession * System.Xml.OnXmlDictionaryReaderClose -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (stream As Stream, dictionary As IXmlDictionary, quotas As XmlDictionaryReaderQuotas, session As XmlBinaryReaderSession, onClose As OnXmlDictionaryReaderClose) As XmlDictionaryReader
Parâmetros
- stream
- Stream
O fluxo do qual ler.
- dictionary
- IXmlDictionary
XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
XmlDictionaryReaderQuotas a ser aplicado.
- session
- XmlBinaryReaderSession
XmlBinaryReaderSession a ser usado.
- onClose
- OnXmlDictionaryReaderClose
O delegado a ser chamado quando o leitor está fechado.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
stream
é null
.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::XmlBinaryReaderSession ^ session);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession session);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession? session);
static member CreateBinaryReader : byte[] * int * int * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas * System.Xml.XmlBinaryReaderSession -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (buffer As Byte(), offset As Integer, count As Integer, dictionary As IXmlDictionary, quotas As XmlDictionaryReaderQuotas, session As XmlBinaryReaderSession) 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
.
- dictionary
- IXmlDictionary
O XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
O XmlDictionaryReaderQuotas a ser aplicado.
- session
- XmlBinaryReaderSession
O XmlBinaryReaderSession a ser usado.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
count
é menor que zero ou maior que o tamanho do buffer menos o deslocamento.
- ou -
offset
é menor que zero ou maior que o tamanho do buffer.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.
Aplica-se a
CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)
Cria uma instância de XmlDictionaryReader que possa ler o Formato XML Binário do .NET.
public:
static System::Xml::XmlDictionaryReader ^ CreateBinaryReader(cli::array <System::Byte> ^ buffer, int offset, int count, System::Xml::IXmlDictionary ^ dictionary, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::XmlBinaryReaderSession ^ session, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary? dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession? session, System.Xml.OnXmlDictionaryReaderClose? onClose);
public static System.Xml.XmlDictionaryReader CreateBinaryReader (byte[] buffer, int offset, int count, System.Xml.IXmlDictionary dictionary, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.XmlBinaryReaderSession session, System.Xml.OnXmlDictionaryReaderClose onClose);
static member CreateBinaryReader : byte[] * int * int * System.Xml.IXmlDictionary * System.Xml.XmlDictionaryReaderQuotas * System.Xml.XmlBinaryReaderSession * System.Xml.OnXmlDictionaryReaderClose -> System.Xml.XmlDictionaryReader
Public Shared Function CreateBinaryReader (buffer As Byte(), offset As Integer, count As Integer, dictionary As IXmlDictionary, quotas As XmlDictionaryReaderQuotas, session As XmlBinaryReaderSession, 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
.
- dictionary
- IXmlDictionary
O XmlDictionary a ser usado.
- quotas
- XmlDictionaryReaderQuotas
O XmlDictionaryReaderQuotas a ser aplicado.
- session
- XmlBinaryReaderSession
O XmlBinaryReaderSession a ser usado.
- onClose
- OnXmlDictionaryReaderClose
O delegado a ser chamado quando o leitor está fechado.
Retornos
Uma instância de XmlDictionaryReader.
Exceções
buffer
é null
.
count
é menor que zero ou maior que o tamanho do buffer menos o deslocamento.
- ou -
offset
é menor que zero ou maior que o tamanho do buffer.
Comentários
Outras XmlDictionaryReader propriedades são definidas como valores padrão ou null
.