10 references to AttDefs
System.Xml (10)
System\Xml\Dom\XmlDocument.cs (4)
541if ( ed != null && ed.AttDefs != null ) { 542IDictionaryEnumerator attrDefs = ed.AttDefs.GetEnumerator(); 1400if ( ed != null && ed.AttDefs != null ) { 1401IDictionaryEnumerator attrDefs = ed.AttDefs.GetEnumerator();
System\Xml\Dom\XmlLoader.cs (2)
581if (elementDecl.AttDefs != null) { 582IDictionaryEnumerator attDefs = elementDecl.AttDefs.GetEnumerator();
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
621if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty) {
System\Xml\Schema\SchemaSetCompiler.cs (1)
678if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty) {
System\Xml\Schema\XmlSchemaValidator.cs (2)
865foreach(SchemaAttDef attDef in elementDecl.AttDefs.Values) { 1763Dictionary<XmlQualifiedName, SchemaAttDef> attributeDefs = currentElementDecl.AttDefs;