IXmlMtomReaderInitializer.SetInput Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Spécifie les initialisations nécessaires pour les lecteurs XML MTOM qui implémentent cette méthode.
Surcharges
SetInput(Stream, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose) |
Spécifie les initialisations nécessaires pour les lecteurs XML MTOM qui lisent un flux. |
SetInput(Byte[], Int32, Int32, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose) |
Spécifie les initialisations nécessaires pour les lecteurs XML MTOM qui lisent une mémoire tampon. |
SetInput(Stream, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose)
Spécifie les initialisations nécessaires pour les lecteurs XML MTOM qui lisent un flux.
public:
void SetInput(System::IO::Stream ^ stream, cli::array <System::Text::Encoding ^> ^ encodings, System::String ^ contentType, System::Xml::XmlDictionaryReaderQuotas ^ quotas, int maxBufferSize, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public void SetInput (System.IO.Stream stream, System.Text.Encoding[] encodings, string contentType, System.Xml.XmlDictionaryReaderQuotas quotas, int maxBufferSize, System.Xml.OnXmlDictionaryReaderClose onClose);
abstract member SetInput : System.IO.Stream * System.Text.Encoding[] * string * System.Xml.XmlDictionaryReaderQuotas * int * System.Xml.OnXmlDictionaryReaderClose -> unit
Public Sub SetInput (stream As Stream, encodings As Encoding(), contentType As String, quotas As XmlDictionaryReaderQuotas, maxBufferSize As Integer, onClose As OnXmlDictionaryReaderClose)
Paramètres
- stream
- Stream
Le flux de données à partir duquel effectuer la lecture.
- encodings
- Encoding[]
Les encodages de caractères possibles du flux.
- contentType
- String
Le Content-Type du message. Peut être null
si le type MIME est présent dans le document en cours de lecture.
- quotas
- XmlDictionaryReaderQuotas
Les XmlDictionaryReaderQuotas à appliquer au lecteur.
- maxBufferSize
- Int32
La taille maximale autorisée de la mémoire tampon.
- onClose
- OnXmlDictionaryReaderClose
Le délégué à utiliser lorsqu'un événement onClose
se produit.
S’applique à
SetInput(Byte[], Int32, Int32, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose)
Spécifie les initialisations nécessaires pour les lecteurs XML MTOM qui lisent une mémoire tampon.
public:
void SetInput(cli::array <System::Byte> ^ buffer, int offset, int count, cli::array <System::Text::Encoding ^> ^ encodings, System::String ^ contentType, System::Xml::XmlDictionaryReaderQuotas ^ quotas, int maxBufferSize, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public void SetInput (byte[] buffer, int offset, int count, System.Text.Encoding[] encodings, string contentType, System.Xml.XmlDictionaryReaderQuotas quotas, int maxBufferSize, System.Xml.OnXmlDictionaryReaderClose onClose);
abstract member SetInput : byte[] * int * int * System.Text.Encoding[] * string * System.Xml.XmlDictionaryReaderQuotas * int * System.Xml.OnXmlDictionaryReaderClose -> unit
Public Sub SetInput (buffer As Byte(), offset As Integer, count As Integer, encodings As Encoding(), contentType As String, quotas As XmlDictionaryReaderQuotas, maxBufferSize As Integer, onClose As OnXmlDictionaryReaderClose)
Paramètres
- buffer
- Byte[]
La mémoire tampon à partir de laquelle effectuer la lecture.
- offset
- Int32
La position de départ à partir de laquelle effectuer la lecture dans buffer
.
- count
- Int32
Le nombre d'octets pouvant être lus à partir de buffer
.
- encodings
- Encoding[]
Les encodages de caractères possibles de l'entrée.
- contentType
- String
Le Content-Type du message. Peut être null
si le type MIME est présent dans le document en cours de lecture.
- quotas
- XmlDictionaryReaderQuotas
Les XmlDictionaryReaderQuotas à appliquer au lecteur.
- maxBufferSize
- Int32
La taille maximale autorisée de la mémoire tampon.
- onClose
- OnXmlDictionaryReaderClose
Le délégué à utiliser lorsqu'un événement onClose
se produit.