1 write to _collection
System.Private.Xml (1)
System\Xml\Schema\XmlSchemaCollection.cs (1)
50_collection = Hashtable.Synchronized(new Hashtable());
11 references to _collection
System.Private.Xml (11)
System\Xml\Schema\XmlSchemaCollection.cs (11)
65get { return _collection.Count; } 181IDictionaryEnumerator enumerator = schema._collection.GetEnumerator(); 197XmlSchemaCollectionNode? node = (XmlSchemaCollectionNode?)_collection[ns ?? string.Empty]; 211return _collection[ns ?? string.Empty] != null; 219return new XmlSchemaCollectionEnumerator(_collection); 224return new XmlSchemaCollectionEnumerator(_collection); 267get { return _collection.Count; } 272XmlSchemaCollectionNode? node = (XmlSchemaCollectionNode?)_collection[ns ?? string.Empty]; 330if (_collection[ns] != null) 331_collection.Remove(ns); 332_collection.Add(ns, node);