23 references to Attributes
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
1012foreach (XmlSchemaObject obj in attributeGroup.Attributes)
System.Private.Xml (22)
System\Xml\Schema\Preprocessor.cs (6)
459attributeGroup.Attributes.Add(langRef); 462attributeGroup.Attributes.Add(spaceRef); 465attributeGroup.Attributes.Add(baseRef); 1080for (int i = 0; i < attributeGroup.Attributes.Count; ++i) 1082XmlSchemaAttributeGroupRef? attrGroupRef = attributeGroup.Attributes[i] as XmlSchemaAttributeGroupRef; 1254PreprocessAttributes(attributeGroup.Attributes, attributeGroup.AnyAttribute, attributeGroup);
System\Xml\Schema\SchemaCollectionCompiler.cs (4)
323CleanupAttributes(attributeGroup.Attributes); 1727for (int i = 0; i < attributeGroup.Attributes.Count; ++i) 1729XmlSchemaAttribute? attribute = attributeGroup.Attributes[i] as XmlSchemaAttribute; 1747XmlSchemaAttributeGroupRef attributeGroupRef = (XmlSchemaAttributeGroupRef)attributeGroup.Attributes[i];
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
757for (int i = 0; i < attributeGroup.Attributes.Count; ++i) 759XmlSchemaAttributeGroupRef? groupRef = attributeGroup.Attributes[i] as XmlSchemaAttributeGroupRef; 927PreprocessAttributes(attributeGroup.Attributes, attributeGroup.AnyAttribute, attributeGroup);
System\Xml\Schema\SchemaSetCompiler.cs (4)
303CleanupAttributes(attributeGroup.Attributes); 2081for (int i = 0; i < attributeGroup.Attributes.Count; ++i) 2083XmlSchemaAttribute? attr = attributeGroup.Attributes[i] as XmlSchemaAttribute; 2102XmlSchemaAttributeGroupRef attributeGroupRef = (XmlSchemaAttributeGroupRef)attributeGroup.Attributes[i];
System\Xml\Schema\XsdBuilder.cs (1)
2373_attributeGroup.Attributes.Add(value);
System\Xml\Serialization\ImportContext.cs (1)
412foreach (XmlSchemaObject o in ((XmlSchemaAttributeGroup)item).Attributes)
System\Xml\Serialization\SchemaObjectWriter.cs (1)
751WriteSortedItems(o.Attributes);
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1575for (int i = 0; i < group.Attributes.Count; i++) 1577object item = group.Attributes[i];