diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-13 15:03:03 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-13 15:03:03 -0800 |
commit | afe8e06d69765504809762045780e1ef6fada446 (patch) | |
tree | 8d82f877b9224d491ac873790b7f310471893300 /src | |
parent | f73b5a92fe803945123ce1c02e4e7266e9940337 (diff) | |
parent | 66040ed1db823f52fa3c01fe4ccd30363441c165 (diff) | |
download | DotNetOpenAuth-afe8e06d69765504809762045780e1ef6fada446.zip DotNetOpenAuth-afe8e06d69765504809762045780e1ef6fada446.tar.gz DotNetOpenAuth-afe8e06d69765504809762045780e1ef6fada446.tar.bz2 |
Merge branch 'v3.0' into v3.1
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Provider/StandardProviderApplicationStore.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Provider/StandardProviderApplicationStore.cs b/src/DotNetOpenAuth/OpenId/Provider/StandardProviderApplicationStore.cs index 7085e72..f33a655 100644 --- a/src/DotNetOpenAuth/OpenId/Provider/StandardProviderApplicationStore.cs +++ b/src/DotNetOpenAuth/OpenId/Provider/StandardProviderApplicationStore.cs @@ -122,7 +122,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// </summary> /// <param name="context">The context, or namespace, within which the <paramref name="nonce"/> must be unique.</param> /// <param name="nonce">A series of random characters.</param> - /// <param name="timestamp">The timestamp that together with the nonce string make it unique. + /// <param name="timestampUtc">The timestamp that together with the nonce string make it unique. /// The timestamp may also be used by the data store to clear out old nonces.</param> /// <returns> /// True if the nonce+timestamp (combination) was not previously in the database. @@ -135,8 +135,8 @@ namespace DotNetOpenAuth.OpenId.Provider { /// is retrieved or set using the /// <see cref="StandardExpirationBindingElement.MaximumMessageAge"/> property. /// </remarks> - public bool StoreNonce(string context, string nonce, DateTime timestamp) { - return this.nonceStore.StoreNonce(context, nonce, timestamp); + public bool StoreNonce(string context, string nonce, DateTime timestampUtc) { + return this.nonceStore.StoreNonce(context, nonce, timestampUtc); } #endregion |