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