// -----------------------------------------------------------------------
//
// TODO: Update copyright text.
//
// -----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///
/// TODO: Update summary.
///
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 Content-Type header, which specifies the MIME type of the accompanying body data.
///
internal const string ContentType = "Content-Type";
}
}