Бөлісу құралы:


XmlSchema.Includes Свойство

Определение

Возвращает коллекцию включенных и импортированных схем.

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

Значение свойства

Входящие XmlSchemaObjectCollection и импортированные схемы.

Комментарии

Метод Add ожидает только XmlSchemaExternal производные типы (XmlSchemaImport, XmlSchemaIncludeи XmlSchemaRedefine) в качестве параметров. В следующем примере показано добавление включенной схемы в Includes коллекцию существующего 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);

Применяется к