6 writes to schemaInfo
System.Private.Xml (6)
System\Xml\Schema\AutoValidator.cs (1)
15schemaInfo = new SchemaInfo();
System\Xml\Schema\BaseValidator.cs (2)
125schemaInfo = value; 144this.schemaInfo = tmpSchemaInfo;
System\Xml\Schema\DtdValidator.cs (1)
51schemaInfo = new SchemaInfo();
System\Xml\Schema\XdrValidator.cs (1)
55schemaInfo = new SchemaInfo();
System\Xml\Schema\XsdValidator.cs (1)
80schemaInfo = new SchemaInfo();
26 references to schemaInfo
System.Private.Xml (26)
System\Xml\Schema\BaseValidator.cs (2)
121return schemaInfo; 134return schemaInfo;
System\Xml\Schema\DtdValidator.cs (8)
58if (schemaInfo!.SchemaType == SchemaType.DTD) 135(!schemaInfo!.DocTypeName.IsEmpty) && 136(!schemaInfo.DocTypeName.Equals(elementName))) 241SchemaElementDecl? elementDecl = schemaInfo!.GetElementDecl(elementName); 260if (schemaInfo!.SchemaType == SchemaType.DTD) 332ProcessEntity(schemaInfo!, name, this, EventHandler, Reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition); 468if (schemaInfo!.ParameterEntities.TryGetValue(qname, out entity)) 475if (schemaInfo!.GeneralEntities.TryGetValue(qname, out entity))
System\Xml\Schema\XdrValidator.cs (10)
135if (!this.schemaInfo!.HasSchema(inlineNS)) 137schemaInfo.Add(xdrSchema, EventHandler); 227SchemaElementDecl? elementDecl = schemaInfo!.GetElementDecl(elementName); 230if (schemaInfo.TargetNamespaces.ContainsKey(context!.Namespace!)) 273SchemaAttDef? attnDef = schemaInfo!.GetAttributeXdr(context.ElementDecl, QualifiedName(reader.LocalName, reader.NamespaceURI)); 368schemaInfo!.Add(xdrSchema, EventHandler); 375if (this.schemaInfo!.TargetNamespaces.ContainsKey(uri)) 395this.schemaInfo.Add(schemaInfo, EventHandler); 402private bool HasSchema { get { return schemaInfo!.SchemaType != SchemaType.None; } } 434ProcessEntity(schemaInfo!, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);
System\Xml\Schema\XsdValidator.cs (6)
382elementDecl ??= schemaInfo!.GetElementDecl(elementName); 400if (!schemaInfo!.ElementDeclsByType.TryGetValue(xsiType, out elementDeclXsi) && xsiType.Namespace == _nsXs) 486SchemaAttDef? attnDef = schemaInfo!.GetAttributeXsd(context.ElementDecl, attQName, ref skipContents); 512&& schemaInfo.Contains(attQName.Namespace) 646private bool HasSchema { get { return schemaInfo!.SchemaType != SchemaType.None; } } 679ProcessEntity(schemaInfo!, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);