6 writes to schemaInfo
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\schema\autovalidator.cs (1)
22schemaInfo = new SchemaInfo();
FrameworkFork\Microsoft.Xml\Xml\schema\basevalidator.cs (2)
123schemaInfo = value; 140this.schemaInfo = tmpSchemaInfo;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (1)
48schemaInfo = new SchemaInfo();
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (1)
55schemaInfo = new SchemaInfo();
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (1)
71schemaInfo = new SchemaInfo();
26 references to schemaInfo
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\schema\basevalidator.cs (2)
119return schemaInfo; 131return schemaInfo;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (8)
55if (schemaInfo.SchemaType == SchemaType.DTD) 132(!schemaInfo.DocTypeName.IsEmpty) && 133(!schemaInfo.DocTypeName.Equals(elementName))) 238SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName); 257if (schemaInfo.SchemaType == SchemaType.DTD) 329ProcessEntity(schemaInfo, name, this, EventHandler, Reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition); 469if (schemaInfo.ParameterEntities.TryGetValue(qname, out entity)) 476if (schemaInfo.GeneralEntities.TryGetValue(qname, out entity))
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (10)
135if (!this.schemaInfo.HasSchema(inlineNS)) 137schemaInfo.Add(xdrSchema, EventHandler); 225SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName); 228if (schemaInfo.TargetNamespaces.ContainsKey(context.Namespace)) 271SchemaAttDef attnDef = schemaInfo.GetAttributeXdr(context.ElementDecl, QualifiedName(reader.LocalName, reader.NamespaceURI)); 369schemaInfo.Add(xdrSchema, EventHandler); 378if (this.schemaInfo.TargetNamespaces.ContainsKey(uri)) 396this.schemaInfo.Add(schemaInfo, EventHandler); 402private bool HasSchema { get { return schemaInfo.SchemaType != SchemaType.None; } } 434ProcessEntity(schemaInfo, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (6)
389elementDecl = schemaInfo.GetElementDecl(elementName); 408if (!schemaInfo.ElementDeclsByType.TryGetValue(xsiType, out elementDeclXsi) && xsiType.Namespace == _nsXs) 494SchemaAttDef attnDef = schemaInfo.GetAttributeXsd(context.ElementDecl, attQName, ref skipContents); 520&& schemaInfo.Contains(attQName.Namespace) 662private bool HasSchema { get { return schemaInfo.SchemaType != SchemaType.None; } } 695ProcessEntity(schemaInfo, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);