summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-07-02 20:34:38 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-07-02 20:34:38 -0700
commit05f80cd62a2cab69598cebade7f906c31b7b2f7b (patch)
treea45d6c8e8043cf9b5e9341bc321af11a44ca50ca /src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs
parentac7b3b8bd58a220bb1d9e310456e75f601b99b58 (diff)
downloadDotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.zip
DotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.tar.gz
DotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.tar.bz2
OAuth project now builds.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs b/src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs
index d9fa889..c02ca79 100644
--- a/src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs
+++ b/src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs
@@ -32,11 +32,11 @@ namespace DotNetOpenAuth.OAuth {
ITamperProtectionChannelBindingElement signingElement = serviceDescription.CreateTamperProtectionElement();
INonceStore store = new NonceMemoryStore(StandardExpirationBindingElement.MaximumMessageAge);
- this.SecuritySettings = DotNetOpenAuthSection.Configuration.OAuth.Consumer.SecuritySettings.CreateSecuritySettings();
+ this.SecuritySettings = OAuthElement.Configuration.Consumer.SecuritySettings.CreateSecuritySettings();
this.OAuthChannel = new OAuthChannel(signingElement, store, tokenManager, this.SecuritySettings);
this.ServiceProvider = serviceDescription;
- Reporting.RecordFeatureAndDependencyUse(this, serviceDescription, tokenManager, null);
+ OAuthReporting.RecordFeatureAndDependencyUse(this, serviceDescription, tokenManager, null);
}
/// <summary>