diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-04 21:17:44 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-04 21:17:44 -0800 |
commit | 02f2c3d583b2bc134aec8c9ffb6b97d0e9af553b (patch) | |
tree | 0d9b9b51800845a0e6bc07439fb55b847b2ef166 /src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs | |
parent | efc59889061d44ba3fbd7701338e323aa053fbdf (diff) | |
download | DotNetOpenAuth-02f2c3d583b2bc134aec8c9ffb6b97d0e9af553b.zip DotNetOpenAuth-02f2c3d583b2bc134aec8c9ffb6b97d0e9af553b.tar.gz DotNetOpenAuth-02f2c3d583b2bc134aec8c9ffb6b97d0e9af553b.tar.bz2 |
Fixed TODO areas of code.
Diffstat (limited to 'src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs b/src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs index 15fcb4f..205e72e 100644 --- a/src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs +++ b/src/DotNetOpenAuth/Messaging/Bindings/INonceStore.cs @@ -28,9 +28,10 @@ namespace DotNetOpenAuth.Messaging.Bindings { /// <remarks> /// The nonce must be stored for no less than the maximum time window a message may /// be processed within before being discarded as an expired message. - /// If the binding element is applicable to your channel, this expiration window - /// is retrieved or set using the - /// <see cref="StandardExpirationBindingElement.MaximumMessageAge"/> property. + /// This maximum message age can be looked up via the + /// <see cref="DotNetOpenAuth.Configuration.MessagingElement.MaximumMessageLifetime"/> + /// property, accessible via the <see cref="DotNetOpenAuth.Configuration.DotNetOpenAuthSection.Configuration"/> + /// property. /// </remarks> bool StoreNonce(string nonce, DateTime timestamp); } |