System::Xml::Schema::XmlSchemaSet::Schemas method
Contents
[
Hide
]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
- Typedef SharedPtr
- Class IList
- Class XmlSchema
- Class XmlSchemaSet
- Namespace System::Xml::Schema
- Library Aspose.PDF for C++
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)
Parameter | Type | Description |
---|---|---|
targetNamespace | String | The 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
- Typedef SharedPtr
- Class List
- Class XmlSchema
- Class String
- Class XmlSchemaSet
- Namespace System::Xml::Schema
- Library Aspose.PDF for C++