IHttpSessionState.GetEnumerator Method

Definition

Returns an enumerator that can be used to read all the session-state item values in the current session.

public:
 System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
Public Function GetEnumerator () As IEnumerator

Returns

An IEnumerator that can iterate through the values in the session-state item collection.

Examples

The following code example implements the GetEnumerator method of the IHttpSessionState interface to return an enumerator for the internal session-state item collection.

public IEnumerator GetEnumerator()
{
  return pSessionItems.GetEnumerator();
}
Public Function GetEnumerator() As IEnumerator Implements IHttpSessionState.GetEnumerator
    Return pSessionItems.GetEnumerator()
End Function

Applies to

See also