//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Configuration { using System.Configuration; /// /// Represents the <oauth> element in the host's .config file. /// internal class OAuth2SectionGroup : ConfigurationSectionGroup { /// /// The name of the oauth section. /// internal const string SectionName = DotNetOpenAuthSection.SectionName + "/oauth2"; /// /// Initializes a new instance of the class. /// internal OAuth2SectionGroup() { } } }