IDictionaryEnumerator.Key Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the key of the current dictionary entry.
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
ReadOnly Property Key As Object
Object Key { get; }
Property Value
Type: System.Object
The key of the current element of the enumeration.
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The IDictionaryEnumerator is positioned before the first entry of the dictionary or after the last entry. |
Remarks
After an enumerator is created or after the Reset method is called, the MoveNext method must be called to advance the enumerator to the first element of the collection before reading the value of the Key property; otherwise, Key is undefined.
Key also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.
Key does not move the position of the enumerator, and consecutive calls to Key return the same object until either MoveNext or Reset is called.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also