1 write to _schemas
System.Private.Xml (1)
System\Xml\Schema\XmlSchemaSet.cs (1)
92_schemas = new SortedList();
33 references to _schemas
System.Private.Xml (33)
System\Xml\Schema\XmlSchemaSet.cs (33)
184return _schemas.Count; 342if (_schemas.ContainsKey(schema.SchemaId) || FindSchemaByNSAndUrl(schema.BaseUri, tns, null) != null) 358_schemas.Remove(schema!.SchemaId); //Might remove schema that was already there and was not added thru this operation 383if (_schemas.ContainsKey(schema.SchemaId)) 401if (!_schemas.ContainsKey(schemaToRemove.SchemaId)) 408if (_schemas.ContainsKey(schemaToRemove.SchemaId)) 426for (int i = 0; i < _schemas.Count; i++) 428XmlSchema mainSchema = (XmlSchema)_schemas.GetByIndex(i)!; 477return _schemas.ContainsValue(schema); 486if (_schemas.Count == 0) 511for (schemaIndex = 0; schemaIndex < _schemas.Count; schemaIndex++) 513currentSchema = (XmlSchema)_schemas.GetByIndex(schemaIndex)!; 553if (schemaIndex == _schemas.Count) 559currentSchema = (XmlSchema)_schemas.GetByIndex(i)!; 584if (!_schemas.ContainsKey(schema.SchemaId)) 641if (!_schemas.ContainsKey(s.SchemaId)) 643_schemas.Add(s.SchemaId, s); 671_schemas.Values.CopyTo(schemas, index); 676return _schemas.Values; 684for (int i = 0; i < _schemas.Count; i++) 686currentSchema = (XmlSchema)_schemas.GetByIndex(i)!; 914_schemas.Add(schema.SchemaId, schema); 934if (!_schemas.ContainsKey(s.SchemaId)) 936_schemas.Add(s.SchemaId, s); 1027if (_schemas.ContainsKey(schema.SchemaId)) 1039_schemas.Remove(schema.SchemaId); 1106bool setIsCompiled = _schemas.Count == 0 ? true : false; 1115if (_schemas.ContainsKey(currentSchema.SchemaId) || (baseUri != null && baseUri.OriginalString.Length != 0 && _schemaLocations[baseUri] != null)) 1120_schemas.Add(currentSchema.SchemaId, currentSchema); 1243if (_schemas.ContainsKey(schema.SchemaId) && (targetNamespace.Length == 0 || targetNamespace == schema.TargetNamespace)) 1250if (chameleonSchema != null && _schemas.ContainsKey(chameleonSchema.SchemaId)) 1303return _schemas; 1347if (_schemas.Count == 0)