64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
19 lines
437 B
C#
19 lines
437 B
C#
using System.Collections.Generic;
|
|
using System.Net.Http.Headers;
|
|
|
|
namespace System.Net.Http
|
|
{
|
|
static class HeaderUtils
|
|
{
|
|
internal static bool IsContentHeader (string name)
|
|
{
|
|
return HttpHeaders.GetKnownHeaderKind (name) == Headers.HttpHeaderKind.Content;
|
|
}
|
|
|
|
internal static string GetSingleHeaderString (string name, IEnumerable<string> values)
|
|
{
|
|
return HttpRequestHeaders.GetSingleHeaderString (name, values);
|
|
}
|
|
}
|
|
}
|