FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObjectTable.cs (9)
146return new XSODictionaryEnumerator(_entries, _table.Count, EnumeratorType.DictionaryEntry);
233return new XSOEnumerator(_entries, _size, EnumeratorType.Keys);
288return new XSOEnumerator(_entries, _size, EnumeratorType.Values);
295private EnumeratorType _enumType;
303internal XSOEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType)
325case EnumeratorType.Keys:
328case EnumeratorType.Values:
331case EnumeratorType.DictionaryEntry:
365internal XSODictionaryEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType) : base(entries, size, enumType)