Condividi tramite


XmlDictionaryReader.CreateBinaryReader Metodo

Definizione

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

Overload

CreateBinaryReader(Byte[], XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Stream, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

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

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

Commenti

Questi overload creano un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .NET.

CreateBinaryReader(Byte[], XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

buffer
Byte[]

Il buffer da cui eseguire la lettura.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

buffer è null.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Stream, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

stream
Stream

Il flusso da cui eseguire la lettura.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

stream è null.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

stream
Stream

Il flusso da cui eseguire la lettura.

dictionary
IXmlDictionary

XmlDictionary da utilizzare.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

stream o quotas è null.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

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

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

buffer
Byte[]

Il buffer da cui eseguire la lettura.

offset
Int32

Posizione iniziale dalla quale leggere nel buffer.

count
Int32

Numero di byte che possono essere letti dal buffer.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

buffer è null.

count è minore di zero o maggiore della lunghezza del buffer meno l'offset.

-oppure-

offset è minore di zero o maggiore della lunghezza del buffer.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

stream
Stream

Il flusso da cui eseguire la lettura.

dictionary
IXmlDictionary

XmlDictionary da utilizzare.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

stream è null.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

buffer
Byte[]

Il buffer da cui eseguire la lettura.

offset
Int32

Posizione iniziale dalla quale leggere nel buffer.

count
Int32

Numero di byte che possono essere letti dal buffer.

dictionary
IXmlDictionary

XmlDictionary da utilizzare.

quotas
XmlDictionaryReaderQuotas

Le quote che si applicano a questa operazione.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

buffer è null.

-oppure-

offset è minore di zero o maggiore della lunghezza del buffer.

count è minore di zero o maggiore della lunghezza del buffer meno l'offset.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Stream, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

stream
Stream

Il flusso da cui eseguire la lettura.

dictionary
IXmlDictionary

XmlDictionary da utilizzare.

onClose
OnXmlDictionaryReaderClose

Delegato da chiamare quando il reader viene chiuso.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

stream è null.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

buffer
Byte[]

Il buffer da cui eseguire la lettura.

offset
Int32

Posizione iniziale dalla quale leggere nel buffer.

count
Int32

Numero di byte che possono essere letti dal buffer.

dictionary
IXmlDictionary

Oggetto XmlDictionary da usare.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

buffer è null.

count è minore di zero o maggiore della lunghezza del buffer meno l'offset.

-oppure-

offset è minore di zero o maggiore della lunghezza del buffer.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a

CreateBinaryReader(Byte[], Int32, Int32, IXmlDictionary, XmlDictionaryReaderQuotas, XmlBinaryReaderSession, OnXmlDictionaryReaderClose)

Crea un'istanza di XmlDictionaryReader che può leggere il formato XML binario di .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

Parametri

buffer
Byte[]

Il buffer da cui eseguire la lettura.

offset
Int32

Posizione iniziale dalla quale leggere nel buffer.

count
Int32

Numero di byte che possono essere letti dal buffer.

dictionary
IXmlDictionary

Oggetto XmlDictionary da usare.

onClose
OnXmlDictionaryReaderClose

Delegato da chiamare quando il reader viene chiuso.

Restituisce

XmlDictionaryReader

Istanza di XmlDictionaryReader.

Eccezioni

buffer è null.

count è minore di zero o maggiore della lunghezza del buffer meno l'offset.

-oppure-

offset è minore di zero o maggiore della lunghezza del buffer.

Commenti

Le altre proprietà XmlDictionaryReader vengono impostate sui valori predefiniti o su null.

Si applica a