21 references to AttributeUses
System.Xml (21)
System\Xml\Schema\BaseProcessor.cs (1)
141
if (existingAttGroup.
AttributeUses
.Count == 0) { //If the existing one is not already compiled, then replace.
System\Xml\Schema\SchemaCollectionCompiler.cs (8)
251
attributeGroup.
AttributeUses
.Clear();
1367
if (attributeGroup.
AttributeUses
.Count > 0) {// already checked
1378
if (attributeGroup.
AttributeUses
[attribute.QualifiedName] == null) {
1379
attributeGroup.
AttributeUses
.Add(attribute.QualifiedName, attribute);
1396
foreach (XmlSchemaAttribute attributeValue in attributeGroupResolved.
AttributeUses
.Values) {
1397
if (attributeGroup.
AttributeUses
[attributeValue.QualifiedName] == null) {
1398
attributeGroup.
AttributeUses
.Add(attributeValue.QualifiedName, attributeValue);
1444
foreach (XmlSchemaAttribute attributeValue in attributeGroup.
AttributeUses
.Values) {
System\Xml\Schema\SchemaSetCompiler.cs (12)
233
attributeGroup.
AttributeUses
.Clear();
1641
if (attributeGroup.
AttributeUses
.Count > 0) {// already checked
1655
if (attributeGroup.
AttributeUses
[attr.QualifiedName] == null) {
1656
attributeGroup.
AttributeUses
.Add(attr.QualifiedName, attr);
1673
foreach (XmlSchemaAttribute attribute in attributeGroupResolved.
AttributeUses
.Values) {
1674
if (attributeGroup.
AttributeUses
[attribute.QualifiedName] == null) {
1675
attributeGroup.
AttributeUses
.Add(attribute.QualifiedName, attribute);
1723
foreach (XmlSchemaAttribute attribute in attributeGroup.
AttributeUses
.Values) {
1839
foreach(XmlSchemaAttribute attributeBase in baseAttributeGroup.
AttributeUses
.Values) {
1840
XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedAttributeGroup.
AttributeUses
[attributeBase.QualifiedName];
1863
foreach(XmlSchemaAttribute attribute in derivedAttributeGroup.
AttributeUses
.Values) {
1864
XmlSchemaAttribute attributeBase = (XmlSchemaAttribute)baseAttributeGroup.
AttributeUses
[attribute.QualifiedName];