summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-09-18 07:40:02 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-09-18 07:40:02 -0700
commitcfe8dac81872ed4ba425864d550d66abcae581d2 (patch)
tree02908354efecbfb74caaf11538f6852148e74a53 /src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs
parentd36e126e7daa6a0d106fa44692e931d489436bbf (diff)
downloadDotNetOpenAuth-cfe8dac81872ed4ba425864d550d66abcae581d2.zip
DotNetOpenAuth-cfe8dac81872ed4ba425864d550d66abcae581d2.tar.gz
DotNetOpenAuth-cfe8dac81872ed4ba425864d550d66abcae581d2.tar.bz2
All product assemblies build without ccrewrite.exe now.
Diffstat (limited to 'src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs')
-rw-r--r--src/DotNetOpenAuth.Messaging/Configuration/DotNetOpenAuthSection.cs14
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) {