diff options
Diffstat (limited to 'src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs')
-rw-r--r-- | src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs b/src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs index 70c8cce..e0c7fc4 100644 --- a/src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs +++ b/src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs @@ -33,24 +33,12 @@ namespace DotNetOpenAuth.Configuration { private const string OAuthElementName = "oauth"; /// <summary> - /// A value indicating whether this instance came from a real Configuration instance. - /// </summary> - private bool synthesizedInstance; - - /// <summary> /// Initializes a new instance of the <see cref="DotNetOpenAuthSection"/> class. /// </summary> internal DotNetOpenAuthSection() { } /// <summary> - /// Initializes a new instance of the <see cref="DotNetOpenAuthSection"/> class. - /// </summary> - private DotNetOpenAuthSection(bool synthesized) { - this.synthesizedInstance = synthesized; - } - - /// <summary> /// Gets the messaging configuration element. /// </summary> public static MessagingElement Messaging { @@ -67,6 +55,8 @@ namespace DotNetOpenAuth.Configuration { /// <summary> /// Gets a named section in this section group, or <c>null</c> if no such section is defined. /// </summary> + /// <param name="name">The name of the section to obtain.</param> + /// <returns>The desired section, or null if it could not be obtained.</returns> internal static ConfigurationSection GetNamedSection(string name) { string fullyQualifiedSectionName = SectionName + "/" + name; if (HttpContext.Current != null) { |