//----------------------------------------------------------------------- // // 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 Content-Type header, which specifies the MIME type of the accompanying body data. /// internal const string ContentType = "Content-Type"; } }