StateBag.GetEnumerator-Methode
Gibt einen Enumerator zurück, der alle Schlüssel-Wert-Paare des im StateBag-Objekt gespeicherten StateItem-Objekts durchläuft.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Function GetEnumerator As IDictionaryEnumerator
'Usage
Dim instance As StateBag
Dim returnValue As IDictionaryEnumerator
returnValue = instance.GetEnumerator
public IDictionaryEnumerator GetEnumerator ()
public:
virtual IDictionaryEnumerator^ GetEnumerator () sealed
public final IDictionaryEnumerator GetEnumerator ()
public final function GetEnumerator () : IDictionaryEnumerator
Rückgabewert
Der Enumerator zum Durchlaufen der Zustandssammlung.
Beispiel
Im folgenden Beispiel wird die Verwendung der GetEnumerator-Methode veranschaulicht.
' 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.
Dim ctlOne As New ctlViewState1()
Dim myStateBag As New StateBag()
myStateBag = ctlOne.GetState()
Dim myDictionaryEnumerator As IDictionaryEnumerator = myStateBag.GetEnumerator()
// 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();
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
StateBag-Klasse
StateBag-Member
System.Web.UI-Namespace
IDictionaryEnumerator