XmlSchema.Read 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.
Lit un Schéma XML.
Surcharges
Read(Stream, ValidationEventHandler) |
Lit un schéma XML à partir du flux fourni. |
Read(TextReader, ValidationEventHandler) |
Lit un schéma XML du TextReader fourni. |
Read(XmlReader, ValidationEventHandler) |
Lit un schéma XML du XmlReader fourni. |
Read(Stream, ValidationEventHandler)
Lit un schéma XML à partir du flux fourni.
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
Paramètres
- stream
- Stream
Flux de données fourni.
- validationEventHandler
- ValidationEventHandler
Le gestionnaire d'événements de validation qui reçoit les informations à propos des erreurs de syntaxe des schémas XML.
Retours
Objet XmlSchema représentant le schéma XML.
Exceptions
Un XmlSchemaException est déclenché si aucun ValidationEventHandler n'est spécifié.
S’applique à
Read(TextReader, ValidationEventHandler)
Lit un schéma XML du TextReader fourni.
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
Paramètres
- reader
- TextReader
TextReader
contenant le schéma XML à lire.
- validationEventHandler
- ValidationEventHandler
Le gestionnaire d'événements de validation qui reçoit les informations à propos des erreurs de syntaxe des schémas XML.
Retours
Objet XmlSchema représentant le schéma XML.
Exceptions
Un XmlSchemaException est déclenché si aucun ValidationEventHandler n'est spécifié.
S’applique à
Read(XmlReader, ValidationEventHandler)
Lit un schéma XML du XmlReader fourni.
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
Paramètres
- reader
- XmlReader
XmlReader
contenant le schéma XML à lire.
- validationEventHandler
- ValidationEventHandler
Le gestionnaire d'événements de validation qui reçoit les informations à propos des erreurs de syntaxe des schémas XML.
Retours
Objet XmlSchema représentant le schéma XML.
Exceptions
Un XmlSchemaException est déclenché si aucun ValidationEventHandler n'est spécifié.