XmlSchemaSet.IsCompiled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.