System::Xml::Schema::XmlSchemaSet::Schemas method

XmlSchemaSet::Schemas() method

Returns a collection of all the XML Schema definition language (XSD) schemas in the XmlSchemaSet.

SharedPtr<Collections::Generic::IList<SharedPtr<XmlSchema>>> System::Xml::Schema::XmlSchemaSet::Schemas()

ReturnValue

An IList object containing all the schemas that have been added to the XmlSchemaSet. If no schemas have been added to the XmlSchemaSet, an empty collection is returned.

See Also

XmlSchemaSet::Schemas(String) method

Returns a collection of all the XML Schema definition language (XSD) schemas in the XmlSchemaSet that belong to the given namespace.

SharedPtr<Collections::Generic::List<SharedPtr<XmlSchema>>> System::Xml::Schema::XmlSchemaSet::Schemas(String targetNamespace)
ParameterTypeDescription
targetNamespaceStringThe schema targetNamespace property.

ReturnValue

An IList 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 collection is returned.

See Also