HeaderDictionary.GetEnumerator Method

Returns an enumerator that iterates through a collection.

Namespace:  Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Public Function GetEnumerator As IEnumerator(Of KeyValuePair(Of String, String()))
'Usage
Dim instance As HeaderDictionary 
Dim returnValue As IEnumerator(Of KeyValuePair(Of String, String()))

returnValue = instance.GetEnumerator()
public IEnumerator<KeyValuePair<string, string[]>> GetEnumerator()
public:
virtual IEnumerator<KeyValuePair<String^, array<String^>^>>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<KeyValuePair<string, string[]>> 
override GetEnumerator : unit -> IEnumerator<KeyValuePair<string, string[]>> 
public final function GetEnumerator() : IEnumerator<KeyValuePair<String, String[]>>

Return Value

Type: System.Collections.Generic.IEnumerator<KeyValuePair<String, String[]>>
An IEnumerator object that can be used to iterate through the collection.

Implements

IEnumerable<T>.GetEnumerator()

See Also

Reference

HeaderDictionary Class

Microsoft.Owin Namespace