Condividi tramite


XmlSchema.Includes Proprietà

Definizione

Ottiene la raccolta di schemi inclusi e importati.

public:
 property System::Xml::Schema::XmlSchemaObjectCollection ^ Includes { System::Xml::Schema::XmlSchemaObjectCollection ^ get(); };
public System.Xml.Schema.XmlSchemaObjectCollection Includes { get; }
member this.Includes : System.Xml.Schema.XmlSchemaObjectCollection
Public ReadOnly Property Includes As XmlSchemaObjectCollection

Valore della proprietà

Oggetto XmlSchemaObjectCollection degli schemi inclusi e importati.

Commenti

Il Add metodo prevede solo XmlSchemaExternal e i relativi tipi derivati (XmlSchemaImport, XmlSchemaIncludee XmlSchemaRedefine) come parametri. Nell'esempio seguente viene illustrato l'aggiunta di uno schema incluso all'insieme Includes di un oggetto esistente XmlSchema .

Dim schema As XmlSchema = New XmlSchema()

Dim textReader As XmlTextReader = New XmlTextReader("include.xsd")
Dim includeSchema As XmlSchema = XmlSchema.Read(textReader, null)

Dim include As XmlSchemaInclude = New XmlSchemaInclude()
include.Schema = includeSchema;
schema.Includes.Add(include);
XmlSchema schema = new XmlSchema();

XmlTextReader textReader = new XmlTextReader("include.xsd");
XmlSchema includeSchema = XmlSchema.Read(textReader, null);

XmlSchemaInclude include = new XmlSchemaInclude();
include.Schema = includeSchema;
schema.Includes.Add(include);

Si applica a