21 references to AttributeUses
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\schema\BaseProcessor.cs (1)
176if (existingAttGroup.AttributeUses.Count == 0)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (8)
311attributeGroup.AttributeUses.Clear(); 1723if (attributeGroup.AttributeUses.Count > 0) 1738if (attributeGroup.AttributeUses[attribute.QualifiedName] == null) 1740attributeGroup.AttributeUses.Add(attribute.QualifiedName, attribute); 1762foreach (XmlSchemaAttribute attributeValue in attributeGroupResolved.AttributeUses.Values) 1764if (attributeGroup.AttributeUses[attributeValue.QualifiedName] == null) 1766attributeGroup.AttributeUses.Add(attributeValue.QualifiedName, attributeValue); 1821foreach (XmlSchemaAttribute attributeValue in attributeGroup.AttributeUses.Values)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (12)
289attributeGroup.AttributeUses.Clear(); 2058if (attributeGroup.AttributeUses.Count > 0) 2077if (attributeGroup.AttributeUses[attr.QualifiedName] == null) 2079attributeGroup.AttributeUses.Add(attr.QualifiedName, attr); 2101foreach (XmlSchemaAttribute attribute in attributeGroupResolved.AttributeUses.Values) 2103if (attributeGroup.AttributeUses[attribute.QualifiedName] == null) 2105attributeGroup.AttributeUses.Add(attribute.QualifiedName, attribute); 2164foreach (XmlSchemaAttribute attribute in attributeGroup.AttributeUses.Values) 2310foreach (XmlSchemaAttribute attributeBase in baseAttributeGroup.AttributeUses.Values) 2312XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedAttributeGroup.AttributeUses[attributeBase.QualifiedName]; 2342foreach (XmlSchemaAttribute attribute in derivedAttributeGroup.AttributeUses.Values) 2344XmlSchemaAttribute attributeBase = (XmlSchemaAttribute)baseAttributeGroup.AttributeUses[attribute.QualifiedName];