Skip to content
Snippets Groups Projects
Commit a36dc891 authored by Sebastien Pouliot's avatar Sebastien Pouliot
Browse files

2010-07-14 Sebastien Pouliot <sebastien@ximian.com>

	* WebHeaderCollection_2_1.cs: Fix IEnumerable.GetEnumerator


svn path=/trunk/mcs/; revision=160387
parent 1814e586
No related branches found
Tags moon/2.99.0.8
No related merge requests found
2010-07-14 Sebastien Pouliot <sebastien@ximian.com>
* WebHeaderCollection_2_1.cs: Fix IEnumerable.GetEnumerator
2010-05-14 Sebastien Pouliot <sebastien@ximian.com>
* WebHeaderCollection_2_1.cs: Hide the internal Dictionary and
......
......@@ -119,7 +119,7 @@ internal bool ContainsKey (string key)
IEnumerator IEnumerable.GetEnumerator ()
{
return headers.GetEnumerator ();
return headers.Keys.GetEnumerator ();
}
static string HttpResponseHeaderToString (HttpResponseHeader header)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment