Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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.

Namespace:   System.Xml.Schema
Assembly:  System.Xml (in System.Xml.dll)

public:
ICollection^ Schemas(
	String^ targetNamespace
)

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.

System_CAPS_noteNote

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft