20 references to AttributeGroups
System.Private.Xml (20)
System\Xml\Schema\BaseProcessor.cs (1)
76XmlSchemaObject? builtInAttributeGroup = schemaForXmlNS.AttributeGroups[qname];
System\Xml\Schema\Preprocessor.cs (6)
180schema.AttributeGroups.Clear(); 740AddToTable(schema.AttributeGroups, attributeGroup.QualifiedName, attributeGroup); 801foreach (XmlSchemaAttributeGroup? attributeGroup in includedSchema.AttributeGroups.Values) 803AddToTable(schema.AttributeGroups, attributeGroup!.QualifiedName, attributeGroup); 879XmlSchemaAttributeGroup? originalAttrGroup = (XmlSchemaAttributeGroup?)schemaToUpdate.AttributeGroups[attributeGroup.QualifiedName]; 888schemaToUpdate.AttributeGroups.Insert(attributeGroup.QualifiedName, attributeGroup);
System\Xml\Schema\SchemaCollectionCompiler.cs (5)
67foreach (XmlSchemaAttributeGroup? attributeGroup in _schema.AttributeGroups.Values) 186schema.AttributeGroups.Clear(); 209foreach (XmlSchemaAttributeGroup? attributeGroup in _schema.AttributeGroups.Values) 1755attributeGroupResolved = (XmlSchemaAttributeGroup?)_schema!.AttributeGroups[attributeGroupRef.RefName]; 1816XmlSchemaAttributeGroup? attributeGroup = (XmlSchemaAttributeGroup?)_schema!.AttributeGroups[attributeGroupRef.RefName];
System\Xml\Schema\SchemaCollectionpreProcessor.cs (6)
110schema.AttributeGroups.Clear(); 516foreach (XmlSchemaAttributeGroup? attributeGroup in includedSchema.AttributeGroups.Values) 518AddToTable(schema.AttributeGroups, attributeGroup!.QualifiedName, attributeGroup); 547AddToTable(schema.AttributeGroups, attributeGroup.QualifiedName, attributeGroup); 625attributeGroup.Redefined = (XmlSchemaAttributeGroup?)redefine.Schema!.AttributeGroups[attributeGroup.QualifiedName]; 703redefine.Schema!.AttributeGroups.Insert((XmlQualifiedName)entry.Key!, (XmlSchemaObject)entry.Value!);
System\Xml\Schema\SchemaSetCompiler.cs (1)
87foreach (XmlSchemaAttributeGroup? attributeGroup in schema.AttributeGroups.Values)
System\Xml\Serialization\XmlSchemas.cs (1)
244ret = schema.AttributeGroups[name];