6 writes to schemaInfo
System.Xml (6)
System\Xml\Schema\AutoValidator.cs (1)
19schemaInfo = new SchemaInfo();
System\Xml\Schema\BaseValidator.cs (2)
108schemaInfo = value; 121this.schemaInfo = tmpSchemaInfo;
System\Xml\Schema\DtdValidator.cs (1)
47schemaInfo = new SchemaInfo();
System\Xml\Schema\XdrValidator.cs (1)
50schemaInfo = new SchemaInfo();
System\Xml\Schema\XsdValidator.cs (1)
66schemaInfo = new SchemaInfo ();
26 references to schemaInfo
System.Xml (26)
System\Xml\Schema\BaseValidator.cs (2)
105return schemaInfo; 114return schemaInfo;
System\Xml\Schema\DtdValidator.cs (8)
53if (schemaInfo.SchemaType == SchemaType.DTD) { 118(!schemaInfo.DocTypeName.IsEmpty) && 119(!schemaInfo.DocTypeName.Equals(elementName)) ){ //VC 1 202SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName); 218if (schemaInfo.SchemaType == SchemaType.DTD) { 276ProcessEntity(schemaInfo, name, this, EventHandler, Reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition); 388if (schemaInfo.ParameterEntities.TryGetValue(qname, out entity)) { 393if (schemaInfo.GeneralEntities.TryGetValue(qname, out entity)) {
System\Xml\Schema\XdrValidator.cs (10)
114if (!this.schemaInfo.HasSchema(inlineNS)) { 115schemaInfo.Add(xdrSchema, EventHandler); 189SchemaElementDecl elementDecl = schemaInfo.GetElementDecl(elementName); 191if(schemaInfo.TargetNamespaces.ContainsKey(context.Namespace)) { 223SchemaAttDef attnDef = schemaInfo.GetAttributeXdr(context.ElementDecl, QualifiedName(reader.LocalName, reader.NamespaceURI)); 304schemaInfo.Add(xdrSchema, EventHandler); 312if (this.schemaInfo.TargetNamespaces.ContainsKey(uri)) { 326this.schemaInfo.Add(schemaInfo, EventHandler); 332private bool HasSchema { get { return schemaInfo.SchemaType != SchemaType.None;}} 358ProcessEntity(schemaInfo, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);
System\Xml\Schema\XsdValidator.cs (6)
323elementDecl = schemaInfo.GetElementDecl(elementName); 337if (!schemaInfo.ElementDeclsByType.TryGetValue(xsiType, out elementDeclXsi) && xsiType.Namespace == NsXs) { 403SchemaAttDef attnDef = schemaInfo.GetAttributeXsd(context.ElementDecl, attQName, ref skipContents); 425&& schemaInfo.Contains(attQName.Namespace) 544private bool HasSchema { get { return schemaInfo.SchemaType != SchemaType.None;}} 571ProcessEntity(schemaInfo, name, this, EventHandler, reader.BaseURI, PositionInfo.LineNumber, PositionInfo.LinePosition);