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