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

namespace DotNetOpenAuth.Configuration {
	using System.Configuration;

	/// <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() {
		}
	}
}