XmlSchemaSet.IsCompiled Property

Definition

Gets a value that indicates whether the XML Schema definition language (XSD) schemas in the XmlSchemaSet have been compiled.

public:
 property bool IsCompiled { bool get(); };
public bool IsCompiled { get; }
member this.IsCompiled : bool
Public ReadOnly Property IsCompiled As Boolean

Property Value

true if the schemas in the XmlSchemaSet have been compiled since the last time a schema was added or removed from the XmlSchemaSet; otherwise, false.

Examples

For an example of the IsCompiled property, see the Reprocess method.

Remarks

The IsCompiled property is not affected if schemas are edited while in the XmlSchemaSet. Updates of the individual schemas in the XmlSchemaSet are not tracked. As a result, the IsCompiled property can be true even though one of the schemas contained in the XmlSchemaSet has been altered, as long as no schemas were added or removed from the XmlSchemaSet.

Applies to

See also