Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ LookupIdAttribute()

IDtdAttributeInfo IDtdAttributeListInfo. System.Xml.Schema.SchemaElementDecl.LookupIdAttribute ( )
inlineprivate

Implements System.Xml.IDtdAttributeListInfo.

Definition at line 211 of file SchemaElementDecl.cs.

212 {
213 foreach (SchemaAttDef value in _attdefs.Values)
214 {
215 if (value.TokenizedType == XmlTokenizedType.ID)
216 {
217 return value;
218 }
219 }
220 return null;
221 }
readonly Dictionary< XmlQualifiedName, SchemaAttDef > _attdefs

References System.Xml.Schema.SchemaElementDecl._attdefs, System.value, and System.Collections.Generic.Dictionary< TKey, TValue >.Values.