9 references to EnumeratorType
System.Private.Xml (9)
System\Xml\Schema\XmlSchemaObjectTable.cs (9)
135return new XSODictionaryEnumerator(_entries, _table.Count, EnumeratorType.DictionaryEntry); 205return new XSOEnumerator(_entries, _size, EnumeratorType.Keys); 258return new XSOEnumerator(_entries, _size, EnumeratorType.Values); 265private readonly EnumeratorType _enumType; 273internal XSOEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType) 295case EnumeratorType.Keys: 298case EnumeratorType.Values: 301case EnumeratorType.DictionaryEntry: 335internal XSODictionaryEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType) : base(entries, size, enumType)