2 writes to partialValidationType
System.Xml (2)
System\Xml\Schema\XmlSchemaValidator.cs (2)
230partialValidationType = null; 356this.partialValidationType = partialValidationType;
12 references to partialValidationType
System.Xml (12)
System\Xml\Schema\XmlSchemaValidator.cs (12)
401if (elementDecl == null && partialValidationType == null) { //Since new schemaLocations might have been added, try for decl from the set again only if no PVType is set 492XmlSchemaObject pvtAttribute = currentState == ValidatorState.TopLevelAttribute ? partialValidationType : null; 835if (partialValidationType != null) { 836XmlSchemaElement element = partialValidationType as XmlSchemaElement; 877if (partialValidationType != null) { 878XmlSchemaAttribute attribute = partialValidationType as XmlSchemaAttribute; 1357if (isRoot && partialValidationType != null) { 1358if (partialValidationType is XmlSchemaElement) { 1359XmlSchemaElement element = (XmlSchemaElement)partialValidationType; 1367else if (partialValidationType is XmlSchemaType) { //Element name is wildcard 1368XmlSchemaType type = (XmlSchemaType)partialValidationType; 1372Debug.Assert(partialValidationType is XmlSchemaAttribute);