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)),
345
return
_schemaInfo
;
352
return
_schemaInfo
;
423
_schemaInfo
.Finish();
452
_schemaInfo
.DocTypeName = GetNameQualified(true);
603
_schemaInfo
.InternalDtdSubset = _internalSubsetValueSb.ToString();
666
if (!
_schemaInfo
.ElementDecls.TryGetValue(elementName, out elementDecl))
668
if (!
_schemaInfo
.UndeclaredElementDecls.TryGetValue(elementName, out elementDecl))
671
_schemaInfo
.UndeclaredElementDecls.Add(elementName, elementDecl);
828
if (!
_schemaInfo
.Notations.ContainsKey(notationName))
952
if (
_schemaInfo
.ElementDecls.TryGetValue(name, out elementDecl))
961
if (
_schemaInfo
.UndeclaredElementDecls.TryGetValue(name, out elementDecl))
963
_schemaInfo
.UndeclaredElementDecls.Remove(name);
969
_schemaInfo
.ElementDecls.Add(name, elementDecl);
1244
if (!
_schemaInfo
.ParameterEntities.ContainsKey(entityName))
1246
_schemaInfo
.ParameterEntities.Add(entityName, entity);
1251
if (!
_schemaInfo
.GeneralEntities.ContainsKey(entityName))
1253
_schemaInfo
.GeneralEntities.Add(entityName, entity);
1295
if (!
_schemaInfo
.Notations.ContainsKey(notationName))
1330
if (!
_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);