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