diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-02 20:34:38 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-02 20:34:38 -0700 |
commit | 05f80cd62a2cab69598cebade7f906c31b7b2f7b (patch) | |
tree | a45d6c8e8043cf9b5e9341bc321af11a44ca50ca /src/DotNetOpenAuth.OAuth/OAuth/ConsumerBase.cs | |
parent | ac7b3b8bd58a220bb1d9e310456e75f601b99b58 (diff) | |
download | DotNetOpenAuth-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.cs | 4 |
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> |