2 writes to Redefined
System.Xml (2)
System\Xml\Schema\Preprocessor.cs (1)
772attributeGroup.Redefined = originalAttrGroup;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
516attributeGroup.Redefined = (XmlSchemaAttributeGroup)redefine.Schema.AttributeGroups[attributeGroup.QualifiedName];
14 references to Redefined
System.Xml (14)
System\Xml\Schema\BaseProcessor.cs (2)
140if (existingAttGroup == attGroup.Redefined) { //attribute group is the redefinition of existingObject 146else if (existingAttGroup.Redefined == attGroup) { //Redefined type already exists in the set, original type is added after redefined type, ignore the original type
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
1388if (attributeGroup.Redefined != null && attributeGroupRef.RefName == attributeGroup.Redefined.QualifiedName) { 1389attributeGroupResolved = (XmlSchemaAttributeGroup)attributeGroup.Redefined;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (1)
517if (attributeGroup.Redefined != null) {
System\Xml\Schema\SchemaSetCompiler.cs (8)
216XmlSchemaAttributeGroup baseAttributeGroup = attributeGroup.Redefined; 235if (attributeGroup.Redefined != null) { 236CleanupAttributeGroup(attributeGroup.Redefined); 447if (baseAttributeGroup.Redefined != null) { 448RecursivelyCheckRedefinedAttributeGroups(baseAttributeGroup, baseAttributeGroup.Redefined); 1665if (attributeGroup.Redefined != null && attributeGroupRef.RefName == attributeGroup.Redefined.QualifiedName) { 1666attributeGroupResolved = (XmlSchemaAttributeGroup)attributeGroup.Redefined;