IXmlMtomReaderInitializer.SetInput Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Especifica los requisitos de inicialización para los lectores de texto XML MTOM que implementan este método.
Sobrecargas
SetInput(Stream, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose) |
Especifica los requisitos de inicialización para los lectores de texto XML MTOM que leen una secuencia. |
SetInput(Byte[], Int32, Int32, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose) |
Especifica los requisitos de inicialización para los lectores de texto XML MTOM que leen un búfer. |
SetInput(Stream, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose)
Especifica los requisitos de inicialización para los lectores de texto XML MTOM que leen una secuencia.
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)
Parámetros
- stream
- Stream
Secuencia a partir de la cual se lee.
- encodings
- Encoding[]
Las posibles codificaciones de caracteres de la secuencia.
- contentType
- String
El Tipo de contenido del mensaje. Puede ser null
si el tipo MIME se encuentra en el documento que se lee.
- quotas
- XmlDictionaryReaderQuotas
El atributo XmlDictionaryReaderQuotas que se debe aplicar al lector.
- maxBufferSize
- Int32
El tamaño máximo permitido del búfer.
- onClose
- OnXmlDictionaryReaderClose
El delegado que debe utilizarse cuando ocurre un evento onClose
.
Se aplica a
SetInput(Byte[], Int32, Int32, Encoding[], String, XmlDictionaryReaderQuotas, Int32, OnXmlDictionaryReaderClose)
Especifica los requisitos de inicialización para los lectores de texto XML MTOM que leen un búfer.
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)
Parámetros
- buffer
- Byte[]
El búfer del que se lee.
- offset
- Int32
La posición inicial de la que leer en buffer
.
- count
- Int32
Número de bytes que se pueden leer de buffer
.
- encodings
- Encoding[]
Las posibles codificaciones de caracteres de la entrada.
- contentType
- String
El Tipo de contenido del mensaje. Puede ser null
si el tipo MIME se encuentra en el documento que se lee.
- quotas
- XmlDictionaryReaderQuotas
El atributo XmlDictionaryReaderQuotas que se debe aplicar al lector.
- maxBufferSize
- Int32
El tamaño máximo permitido del búfer.
- onClose
- OnXmlDictionaryReaderClose
El delegado que debe utilizarse cuando ocurre un evento onClose
.