14 references to ImportedSchemas
System.Xml (14)
System\Xml\Schema\Preprocessor.cs (2)
91rootSchema.ImportedSchemas.Clear(); 130Preprocess(rootSchema, targetNamespace, rootSchema.ImportedSchemas);
System\Xml\Schema\XmlSchemaSet.cs (10)
464schemaToRemove.ImportedSchemas.Contains(mainSchema)) { 485for (int i = 0; i < schemaToRemove.ImportedSchemas.Count; ++i) { 486XmlSchema impSchema = (XmlSchema)schemaToRemove.ImportedSchemas[i]; 657for (int i = 0; i < schema.ImportedSchemas.Count; ++i) { //Once preprocessed external schemas property is set 658XmlSchema s = (XmlSchema)schema.ImportedSchemas[i]; 844if (schema.ImportedSchemas.Count > 0) { //Check imports 846for (int i = 0; i < schema.ImportedSchemas.Count; ++i) { 847XmlSchema impSchema = (XmlSchema)schema.ImportedSchemas[i]; 929for (int i = 0; i < schema.ImportedSchemas.Count; ++i) { //Once preprocessed external schemas property is set 930XmlSchema s = (XmlSchema)schema.ImportedSchemas[i];
System\Xml\Schema\XmlSchemaValidator.cs (2)
321for (int i = 0; i < schema.ImportedSchemas.Count; ++i) { //Check for its imports 322XmlSchema impSchema = (XmlSchema)schema.ImportedSchemas[i];