summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId/OpenId/Extensions/OAuth/Constants.cs
blob: e439aff5cecce326c4160b1dc01e944ba142694b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//-----------------------------------------------------------------------
// <copyright file="Constants.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.OpenId.Extensions.OAuth {
	/// <summary>
	/// Constants used in the OpenID OAuth extension.
	/// </summary>
	internal static class Constants {
		/// <summary>
		/// The TypeURI for the OpenID OAuth extension.
		/// </summary>
		internal const string TypeUri = "http://specs.openid.net/extensions/oauth/1.0";

		/// <summary>
		/// The name of the parameter that carries the request token in the response.
		/// </summary>
		internal const string RequestTokenParameter = "request_token";
	}
}