IDictionaryEnumerator.Value Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the current dictionary entry.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The IDictionaryEnumerator is positioned before the first entry of the dictionary or after the last entry. |
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 Value property; otherwise, Value is undefined.
Value also throws an exception if the last call to MoveNext returned false, which indicates the end of the collection.
Value does not move the position of the enumerator, and consecutive calls to Value return the same object until either MoveNext or Reset is called.