// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Net.Http.Headers; namespace System.Net.Http { /// /// All of the existing non-abstract implementations, namely /// , , and /// enforce strict rules on what kinds of HTTP header fields can be added to each collection. /// When parsing the "application/http" media type we need to just get the unsorted list. It /// will get sorted later. /// internal class HttpUnsortedHeaders : HttpHeaders { } }