summaryrefslogtreecommitdiffstats
path: root/projecttemplates
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-01 07:10:53 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-01 08:14:47 -0700
commit3dc6c8214242cecadaa9d6c63f083f68c58597fd (patch)
tree91ae359a52fe863cf5851b77faaa45ff43566ca2 /projecttemplates
parentefae8ebd730873ce485d07638513be86d8a0a9d2 (diff)
downloadDotNetOpenAuth-3dc6c8214242cecadaa9d6c63f083f68c58597fd.zip
DotNetOpenAuth-3dc6c8214242cecadaa9d6c63f083f68c58597fd.tar.gz
DotNetOpenAuth-3dc6c8214242cecadaa9d6c63f083f68c58597fd.tar.bz2
Corrected old name of nonce store property.
Diffstat (limited to 'projecttemplates')
-rw-r--r--projecttemplates/RelyingPartyLogic/OAuthAuthorizationServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/OAuthAuthorizationServer.cs b/projecttemplates/RelyingPartyLogic/OAuthAuthorizationServer.cs
index 27c1e0c..77348ec 100644
--- a/projecttemplates/RelyingPartyLogic/OAuthAuthorizationServer.cs
+++ b/projecttemplates/RelyingPartyLogic/OAuthAuthorizationServer.cs
@@ -40,7 +40,7 @@ namespace RelyingPartyLogic {
/// Gets the authorization code nonce store to use to ensure that authorization codes can only be used once.
/// </summary>
/// <value>The authorization code nonce store.</value>
- public INonceStore VerificationCodeNonceStore {
+ public INonceStore NonceStore {
get { return this.nonceStore; }
}