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