36 references to AttributeUses
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (1)
263
foreach (XmlSchemaObject attribute in complexType.
AttributeUses
.Values)
System.Xml (35)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
509
XmlSchemaAttribute schemaAttribute = elementSchemaType.
AttributeUses
[attName] as XmlSchemaAttribute;
System\Xml\Schema\Inference\Infer.cs (4)
1272
xsa = AddAttribute(xtr.LocalName, xtr.Prefix, xtr.NamespaceURI, xtr.Value, bCreatingNewType, parentSchema, sce.Attributes, ct.
AttributeUses
);
1276
xsa = AddAttribute(xtr.LocalName, xtr.Prefix, xtr.NamespaceURI, xtr.Value, bCreatingNewType, parentSchema, ct.Attributes, ct.
AttributeUses
);
1306
if (!bCreatingNewType && ct.
AttributeUses
.Count > 0) {
1307
sourceCollection = ct.
AttributeUses
.Values;
System\Xml\Schema\SchemaCollectionCompiler.cs (15)
288
complexType.
AttributeUses
.Clear();
594
foreach(XmlSchemaAttribute attribute in complexType.
AttributeUses
.Values) {
614
foreach(XmlSchemaAttribute attribute in complexType.
AttributeUses
.Values) {
1427
if (derivedType.
AttributeUses
[attribute.QualifiedName] == null) {
1428
derivedType.
AttributeUses
.Add(attribute.QualifiedName, attribute);
1447
if (derivedType.
AttributeUses
[attributeValue.QualifiedName] == null) {
1448
derivedType.
AttributeUses
.Add(attributeValue.QualifiedName, attributeValue);
1471
foreach(XmlSchemaAttribute attributeBase in baseType.
AttributeUses
.Values) {
1472
XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedType.
AttributeUses
[attributeBase.QualifiedName];
1480
derivedType.
AttributeUses
.Add(attributeBase.QualifiedName, attributeBase);
1494
foreach(XmlSchemaAttribute attributeBase in baseType.
AttributeUses
.Values) {
1495
XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedType.
AttributeUses
[attributeBase.QualifiedName];
1497
derivedType.
AttributeUses
.Add(attributeBase.QualifiedName, attributeBase);
1522
foreach(XmlSchemaAttribute attribute in derivedType.
AttributeUses
.Values) {
1523
XmlSchemaAttribute attributeBase = (XmlSchemaAttribute)baseType.
AttributeUses
[attribute.QualifiedName];
System\Xml\Schema\SchemaSetCompiler.cs (14)
276
complexType.
AttributeUses
.Clear();
671
foreach(XmlSchemaAttribute attribute in complexType.
AttributeUses
.Values) {
1706
if (derivedType.
AttributeUses
[attr.QualifiedName] == null) {
1707
derivedType.
AttributeUses
.Add(attr.QualifiedName, attr);
1726
if (derivedType.
AttributeUses
[attribute.QualifiedName] == null) {
1727
derivedType.
AttributeUses
.Add(attribute.QualifiedName, attribute);
1750
foreach(XmlSchemaAttribute attributeBase in baseType.
AttributeUses
.Values) {
1751
XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedType.
AttributeUses
[attributeBase.QualifiedName];
1753
derivedType.
AttributeUses
.Add(attributeBase.QualifiedName, attributeBase);
1773
foreach(XmlSchemaAttribute attributeBase in baseType.
AttributeUses
.Values) {
1774
XmlSchemaAttribute attribute = (XmlSchemaAttribute)derivedType.
AttributeUses
[attributeBase.QualifiedName];
1776
derivedType.
AttributeUses
.Add(attributeBase.QualifiedName, attributeBase);
1807
foreach(XmlSchemaAttribute attribute in derivedType.
AttributeUses
.Values) {
1808
XmlSchemaAttribute attributeBase = (XmlSchemaAttribute)baseType.
AttributeUses
[attribute.QualifiedName];
System\Xml\Schema\XmlSchemaComplexType.cs (1)
339
foreach(XmlSchemaAttribute attribute in this.
AttributeUses
.Values) {