//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Configuration { using System; using System.Collections.Generic; using System.Configuration; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; using DotNetOpenAuth.OAuth; /// /// Security settings that are applicable to consumers. /// internal class OAuthConsumerSecuritySettingsElement : ConfigurationElement { /// /// Initializes a new instance of the class. /// internal OAuthConsumerSecuritySettingsElement() { } /// /// Initializes a programmatically manipulatable bag of these security settings with the settings from the config file. /// /// The newly created security settings object. [SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic", Justification = "By design")] internal ConsumerSecuritySettings CreateSecuritySettings() { return new ConsumerSecuritySettings(); } } }