public static ILookup <string, object> ToLookup(this HttpRequestHeaders headers) { return(headers.SelectMany(h => h.Value.Select(x => new KeyValuePair <string, object>(h.Key, x))).ToLookup()); }