XmlSchema.Read 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.
Lê um esquema XML.
Sobrecargas
Read(Stream, ValidationEventHandler) |
Lê um esquema XML do fluxo fornecido. |
Read(TextReader, ValidationEventHandler) |
Lê um Esquema XML do TextReader fornecido. |
Read(XmlReader, ValidationEventHandler) |
Lê um Esquema XML do XmlReader fornecido. |
Read(Stream, ValidationEventHandler)
Lê um esquema XML do fluxo fornecido.
public:
static System::Xml::Schema::XmlSchema ^ Read(System::IO::Stream ^ stream, System::Xml::Schema::ValidationEventHandler ^ validationEventHandler);
public static System.Xml.Schema.XmlSchema? Read (System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler? validationEventHandler);
public static System.Xml.Schema.XmlSchema Read (System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler validationEventHandler);
static member Read : System.IO.Stream * System.Xml.Schema.ValidationEventHandler -> System.Xml.Schema.XmlSchema
Public Shared Function Read (stream As Stream, validationEventHandler As ValidationEventHandler) As XmlSchema
Parâmetros
- stream
- Stream
O fluxo de dados fornecido.
- validationEventHandler
- ValidationEventHandler
O manipulador de eventos de validação que recebe informações sobre erros de sintaxe do Esquema XML.
Retornos
O objeto XmlSchema que representa o Esquema XML.
Exceções
Um XmlSchemaException é gerado se nenhum ValidationEventHandler é especificado.
Aplica-se a
Read(TextReader, ValidationEventHandler)
Lê um Esquema XML do TextReader fornecido.
public:
static System::Xml::Schema::XmlSchema ^ Read(System::IO::TextReader ^ reader, System::Xml::Schema::ValidationEventHandler ^ validationEventHandler);
public static System.Xml.Schema.XmlSchema? Read (System.IO.TextReader reader, System.Xml.Schema.ValidationEventHandler? validationEventHandler);
public static System.Xml.Schema.XmlSchema Read (System.IO.TextReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler);
static member Read : System.IO.TextReader * System.Xml.Schema.ValidationEventHandler -> System.Xml.Schema.XmlSchema
Public Shared Function Read (reader As TextReader, validationEventHandler As ValidationEventHandler) As XmlSchema
Parâmetros
- reader
- TextReader
O TextReader
que contém o Esquema XML a ser lido.
- validationEventHandler
- ValidationEventHandler
O manipulador de eventos de validação que recebe informações sobre os erros de sintaxe do Esquema XML.
Retornos
O objeto XmlSchema que representa o Esquema XML.
Exceções
Um XmlSchemaException é gerado se nenhum ValidationEventHandler é especificado.
Aplica-se a
Read(XmlReader, ValidationEventHandler)
Lê um Esquema XML do XmlReader fornecido.
public:
static System::Xml::Schema::XmlSchema ^ Read(System::Xml::XmlReader ^ reader, System::Xml::Schema::ValidationEventHandler ^ validationEventHandler);
public static System.Xml.Schema.XmlSchema? Read (System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler? validationEventHandler);
public static System.Xml.Schema.XmlSchema Read (System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler);
static member Read : System.Xml.XmlReader * System.Xml.Schema.ValidationEventHandler -> System.Xml.Schema.XmlSchema
Public Shared Function Read (reader As XmlReader, validationEventHandler As ValidationEventHandler) As XmlSchema
Parâmetros
- reader
- XmlReader
O XmlReader
que contém o Esquema XML a ser lido.
- validationEventHandler
- ValidationEventHandler
O manipulador de eventos de validação que recebe informações sobre os erros de sintaxe do Esquema XML.
Retornos
O objeto XmlSchema que representa o Esquema XML.
Exceções
Um XmlSchemaException é gerado se nenhum ValidationEventHandler é especificado.