StateBag.GetEnumerator Method ()
.NET Framework (current version)
Returns an enumerator that iterates over all the key/value pairs of the StateItem objects stored in the StateBag object.
Assembly: System.Web (in System.Web.dll)
Return Value
Type: System.Collections.IDictionaryEnumeratorThe enumerator to iterate through the state bag.
Implements
IDictionary.GetEnumerator()The following example demonstrates how to use the GetEnumerator method.
// Create a StateBag object to contain the view state // associated with the custom control named myControl. Use the // StateBag.GetEnumerator method to create an // IDictionaryEnumerator named myDictionaryEnumerator. ctlViewState1 ctlOne = new ctlViewState1(); StateBag myStateBag = new StateBag(); myStateBag = ctlOne.GetState(); IDictionaryEnumerator myDictionaryEnumerator = myStateBag.GetEnumerator();
.NET Framework
Available since 1.1
Available since 1.1
Show: