2 writes to conformanceLevel
System.Xml (2)
System\Xml\Core\XmlReaderSettings.cs (2)
185conformanceLevel = value; 521conformanceLevel = ConformanceLevel.Document;
7 references to conformanceLevel
System.Xml (7)
System\Xml\Core\XmlReaderSettings.cs (7)
177return conformanceLevel; 621if (this.conformanceLevel != ConformanceLevel.Auto && this.conformanceLevel != XmlReader.GetV1ConformanceLevel(baseReader)) { 622throw new InvalidOperationException(Res.GetString(Res.Xml_IncompatibleConformanceLevel, this.conformanceLevel.ToString())); 675if (this.conformanceLevel != baseReaderSettings.ConformanceLevel && this.conformanceLevel != ConformanceLevel.Auto) { 676throw new InvalidOperationException(Res.GetString(Res.Xml_IncompatibleConformanceLevel, this.conformanceLevel.ToString()));