summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs b/src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs
new file mode 100644
index 0000000..8da8013
--- /dev/null
+++ b/src/DotNetOpenAuth.Core/Messaging/HttpRequestHeaders.cs
@@ -0,0 +1,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";
+ }
+}