3 writes to schemaSet
System.Xml (3)
System\Xml\Serialization\XmlSchemas.cs (3)
101schemaSet = new XmlSchemaSet(); 228schemaSet = null; 614schemaSet = new XmlSchemaSet();
15 references to schemaSet
System.Xml (15)
System\Xml\Serialization\XmlSchemas.cs (15)
100if (schemaSet == null) { 102schemaSet.XmlResolver = null; 103schemaSet.ValidationEventHandler += new ValidationEventHandler(IgnoreCompileErrors); 105return schemaSet; 615schemaSet.XmlResolver = null; 616schemaSet.ValidationEventHandler += handler; 619schemaSet.Add(s); 620int schemaCount = schemaSet.Count; 624schemaSet.Add(s); 631schemaSet.Add(XsdSchema); 637schemaSet.Add(XmlSchema); 640schemaSet.Compile(); 641schemaSet.ValidationEventHandler -= handler; 642isCompiled = schemaSet.IsCompiled && schemaCount == schemaSet.Count;