XmlSchemaSet.Compile Method

Definition

Compiles the XML Schema definition language (XSD) schemas added to the XmlSchemaSet into one logical schema.

public:
 void Compile();
public void Compile ();
member this.Compile : unit -> unit
Public Sub Compile ()

Exceptions

An error occurred when validating and compiling the schemas in the XmlSchemaSet.

Examples

Dim schemaSet As XmlSchemaSet = New XmlSchemaSet()
schemaSet.Add("http://www.contoso.com/books", "http://www.contoso.com/books.xsd")
schemaSet.Compile()
XmlSchemaSet schemaSet = new XmlSchemaSet();
schemaSet.Add("http://www.contoso.com/books", "http://www.contoso.com/books.xsd");
schemaSet.Compile();

Remarks

This method is called automatically when validation is needed and the XmlSchemaSet has not been previously compiled - for example, when an XmlSchemaSet is used as an input to create an XmlReader object in the Schemas property of an XmlReaderSettings object. If the XmlSchemaSet is already in the compiled state, this method will not recompile the schemas. If this method executes successfully, the IsCompiled property is set to true.

Schemas that have been previously compiled by an XmlSchemaSet are not recompiled. However, schemas that were compiled using the Compile method of the XmlSchema will be recompiled.

Note

You need to call the Reprocess method if you have changed a schema (or one of its includes/imports) after adding it to the XmlSchemaSet. The Reprocess method will check the schema for structural validity according to the rules of W3C XML Schema. However, it will not perform a full validation check. It will also resolve references to internal and external schema components. Any imported or included schemas that are successfully retrieved are also added to the XmlSchemaSet. Imported schemas are added as separate XmlSchema objects while included schemas are made part of the including XmlSchema. If the call to reprocess is successful, the IsCompiled property is set to false.

Applies to