1 write to _schemaInfo
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
263_schemaInfo = new SchemaInfo();
25 references to _schemaInfo
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (25)
264_schemaInfo.SchemaType = SchemaType.DTD; 291_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.Add(docTypeName)); 295_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.Add(docTypeName.Substring(0, colonPos)), 345return _schemaInfo; 352return _schemaInfo; 423_schemaInfo.Finish(); 452_schemaInfo.DocTypeName = GetNameQualified(true); 603_schemaInfo.InternalDtdSubset = _internalSubsetValueSb.ToString(); 666if (!_schemaInfo.ElementDecls.TryGetValue(elementName, out elementDecl)) 668if (!_schemaInfo.UndeclaredElementDecls.TryGetValue(elementName, out elementDecl)) 671_schemaInfo.UndeclaredElementDecls.Add(elementName, elementDecl); 828if (!_schemaInfo.Notations.ContainsKey(notationName)) 952if (_schemaInfo.ElementDecls.TryGetValue(name, out elementDecl)) 961if (_schemaInfo.UndeclaredElementDecls.TryGetValue(name, out elementDecl)) 963_schemaInfo.UndeclaredElementDecls.Remove(name); 969_schemaInfo.ElementDecls.Add(name, elementDecl); 1244if (!_schemaInfo.ParameterEntities.ContainsKey(entityName)) 1246_schemaInfo.ParameterEntities.Add(entityName, entity); 1251if (!_schemaInfo.GeneralEntities.ContainsKey(entityName)) 1253_schemaInfo.GeneralEntities.Add(entityName, entity); 1295if (!_schemaInfo.Notations.ContainsKey(notationName)) 1330if (!_schemaInfo.Notations.ContainsKey(notationName.Name)) 1337_schemaInfo.Notations.Add(notation.Name.Name, notation); 3423_schemaInfo.ParameterEntities.TryGetValue(entityName, out entity); 3427_schemaInfo.GeneralEntities.TryGetValue(entityName, out entity);