XmlSchema.Includes Właściwość

Definicja

Pobiera kolekcję dołączonych i zaimportowanych schematów.

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

Wartość właściwości

XmlSchemaObjectCollection

Element XmlSchemaObjectCollection z dołączonych i zaimportowanych schematów.

Uwagi

Metoda Add oczekuje tylko XmlSchemaExternal i jej typów pochodnych (XmlSchemaImport, XmlSchemaInclude, i XmlSchemaRedefine) jako parametrów. Poniższy przykład ilustruje dodanie dołączonego schematu do Includes kolekcji istniejącego XmlSchema obiektu.

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);  

Dotyczy