10 references to AttDefs
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (4)
600if (ed != null && ed.AttDefs != null) 602IDictionaryEnumerator attrDefs = ed.AttDefs.GetEnumerator(); 1620if (ed != null && ed.AttDefs != null) 1622IDictionaryEnumerator attrDefs = ed.AttDefs.GetEnumerator();
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
667if (elementDecl.AttDefs != null) 669IDictionaryEnumerator attDefs = elementDecl.AttDefs.GetEnumerator();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
779if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (1)
851if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (2)
1021foreach (SchemaAttDef attDef in elementDecl.AttDefs.Values) 2131Dictionary<XmlQualifiedName, SchemaAttDef> attributeDefs = currentElementDecl.AttDefs;