You've already forked linux-packaging-mono
18 lines
721 B
C#
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
|
|
{
|
|
}
|
|
}
|