9 references to EnumeratorType
System.Xml (9)
System\Xml\Schema\XmlSchemaObjectTable.cs (9)
121return new XSODictionaryEnumerator(this.entries, table.Count, EnumeratorType.DictionaryEntry); 192return new XSOEnumerator(this.entries, this.size, EnumeratorType.Keys); 237return new XSOEnumerator(this.entries, this.size, EnumeratorType.Values); 243private EnumeratorType enumType; 251internal XSOEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType) { 267case EnumeratorType.Keys: 270case EnumeratorType.Values: 273case EnumeratorType.DictionaryEntry: 304internal XSODictionaryEnumerator(List<XmlSchemaObjectEntry> entries, int size, EnumeratorType enumType) : base(entries, size, enumType) {