XmlSchemaSet.Contains 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.
Indique si un schéma en langage XSD (XML Schema Definition) se trouve dans XmlSchemaSet.
Surcharges
Contains(String) |
Indique si un schéma en langage XSD (XML Schema Definition) avec l'URI d'espace de noms cible spécifié se trouve dans XmlSchemaSet. |
Contains(XmlSchema) |
Indique si l'objet en langage XSD (XML Schema Definition) XmlSchema spécifié se trouve dans XmlSchemaSet. |
Contains(String)
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
Indique si un schéma en langage XSD (XML Schema Definition) avec l'URI d'espace de noms cible spécifié se trouve dans XmlSchemaSet.
public:
bool Contains(System::String ^ targetNamespace);
public bool Contains (string? targetNamespace);
public bool Contains (string targetNamespace);
member this.Contains : string -> bool
Public Function Contains (targetNamespace As String) As Boolean
Paramètres
- targetNamespace
- String
Propriété targetNamespace
du schéma.
Retours
true
si un schéma avec l'URI d'espace de noms cible spécifié se trouve XmlSchemaSet ; sinon, false
.
Remarques
Les schémas qui sont indirectement ajoutés à sont XmlSchemaSet détectés par la Contains méthode ; par exemple, les schémas importés. Par conséquent, si un schéma pour l’espace http://www.contoso.com/retail
de noms qui importe un schéma pour l’espace http://www.contoso.com/books
de noms est ajouté à , XmlSchemaSeten appelant Contains avec http://www.contoso.com/books
comme paramètre, il retourne true
.
S’applique à
Contains(XmlSchema)
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
Indique si l'objet en langage XSD (XML Schema Definition) XmlSchema spécifié se trouve dans XmlSchemaSet.
public:
bool Contains(System::Xml::Schema::XmlSchema ^ schema);
public bool Contains (System.Xml.Schema.XmlSchema schema);
member this.Contains : System.Xml.Schema.XmlSchema -> bool
Public Function Contains (schema As XmlSchema) As Boolean
Paramètres
Retours
true
si l'objet XmlSchema et dans le XmlSchemaSet ; sinon, false
.
Exceptions
XmlSchemaSet passé en tant que paramètre est null
.