blob: 8da801348b1972c9dd1dce33677f46ea773fa2f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// -----------------------------------------------------------------------
// <copyright file="HttpRequestHeaders.cs" company="">
// TODO: Update copyright text.
// </copyright>
// -----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// TODO: Update summary.
/// </summary>
internal static class HttpRequestHeaders {
/// <summary>
/// The Authorization header, which specifies the credentials that the client presents in order to authenticate itself to the server.
/// </summary>
internal const string Authorization = "Authorization";
/// <summary>
/// The Content-Type header, which specifies the MIME type of the accompanying body data.
/// </summary>
internal const string ContentType = "Content-Type";
}
}
|