37 lines
1.9 KiB
C#
37 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Collections
|
|
{
|
|
/// <summary>Enumerates the elements of a nongeneric dictionary.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x02000134 RID: 308
|
|
[ComVisible(true)]
|
|
public interface IDictionaryEnumerator : IEnumerator
|
|
{
|
|
/// <summary>Gets both the key and the value of the current dictionary entry.</summary>
|
|
/// <returns>A <see cref="T:System.Collections.DictionaryEntry" /> containing both the key and the value of the current dictionary entry.</returns>
|
|
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x17000292 RID: 658
|
|
// (get) Token: 0x06000FEB RID: 4075
|
|
DictionaryEntry Entry { get; }
|
|
|
|
/// <summary>Gets the key of the current dictionary entry.</summary>
|
|
/// <returns>The key of the current element of the enumeration.</returns>
|
|
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x17000293 RID: 659
|
|
// (get) Token: 0x06000FEC RID: 4076
|
|
object Key { get; }
|
|
|
|
/// <summary>Gets the value of the current dictionary entry.</summary>
|
|
/// <returns>The value of the current element of the enumeration.</returns>
|
|
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x17000294 RID: 660
|
|
// (get) Token: 0x06000FED RID: 4077
|
|
object Value { get; }
|
|
}
|
|
}
|