Files
linux-packaging-mono/external/aspnetwebstack/src/System.Net.Http.Formatting/HttpUnsortedHeaders.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

18 lines
721 B
C#

// 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
{
/// <summary>
/// All of the existing non-abstract <see cref="HttpHeaders"/> implementations, namely
/// <see cref="HttpRequestHeaders"/>, <see cref="HttpResponseHeaders"/>, and <see cref="HttpContentHeaders"/>
/// 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.
/// </summary>
internal class HttpUnsortedHeaders : HttpHeaders
{
}
}