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