//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///
/// Well known HTTP headers.
///
internal static class HttpRequestHeaders {
///
/// The Authorization header, which specifies the credentials that the client presents in order to authenticate itself to the server.
///
internal const string Authorization = "Authorization";
///
/// The WWW-Authenticate header, which is included in HTTP 401 Unauthorized responses to help the client know which authorization schemes are supported.
///
internal const string WwwAuthenticate = "WWW-Authenticate";
///
/// The Content-Type header, which specifies the MIME type of the accompanying body data.
///
internal const string ContentType = "Content-Type";
}
}