summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2/Configuration/OAuth2SectionGroup.cs
blob: 112e756fa134d4a241ae669cdcba636206078346 (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
//-----------------------------------------------------------------------
// <copyright file="OAuth2SectionGroup.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.Configuration {
	using System.Configuration;
	using System.Diagnostics.Contracts;

	/// <summary>
	/// Represents the &lt;oauth&gt; element in the host's .config file.
	/// </summary>
	internal class OAuth2SectionGroup : ConfigurationSectionGroup {
		/// <summary>
		/// The name of the oauth section.
		/// </summary>
		internal const string SectionName = DotNetOpenAuthSection.SectionName + "/oauth2";

		/// <summary>
		/// Initializes a new instance of the <see cref="OAuth2SectionGroup"/> class.
		/// </summary>
		internal OAuth2SectionGroup() {
		}
	}
}