XmlSchemaSet::Schemas Method (String^)
Returns a collection of all the XML Schema definition language (XSD) schemas in the XmlSchemaSet that belong to the given namespace.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- targetNamespace
-
Type:
System::String^
The schema targetNamespace property.
Return Value
Type: System.Collections::ICollection^An ICollection object containing all the schemas that have been added to the XmlSchemaSet that belong to the given namespace. If no schemas have been added to the XmlSchemaSet, an empty ICollection object is returned.
If the targetNamespace parameter is null or Empty, then all schemas without a namespace are returned.
This method returns schemas that were added indirectly to the XmlSchemaSet because they were imported.
Note |
|---|
The Schemas method is the equivalent of the Item method of the obsolete XmlSchemaCollection. |
The following example illustrates how to iterate over all the schemas in the http://www.contoso.com/books namespace in the XmlSchemaSet.
Available since 2.0
