summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-06 17:42:12 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-06 17:42:12 -0800
commit5c50924246387b6d9a5ce668fb389b5ec7d93434 (patch)
treef86d6f629609450619e30533b1c0c4629111050b /src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs
parentab1e20ef732e482706cf5cea47e371f90476c8f3 (diff)
downloadDotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.zip
DotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.tar.gz
DotNetOpenAuth-5c50924246387b6d9a5ce668fb389b5ec7d93434.tar.bz2
Unit test build break fixes.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs b/src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs
index 29163f7..37c86ca 100644
--- a/src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs
@@ -31,5 +31,11 @@ namespace DotNetOpenAuth.Messaging {
/// </summary>
internal static readonly Task<MessageProtections?> TamperProtection =
Task.FromResult<MessageProtections?>(MessageProtections.TamperProtection);
+
+ /// <summary>
+ /// A task whose result is <see cref="MessageProtections.ReplayProtection"/>
+ /// </summary>
+ internal static readonly Task<MessageProtections?> ReplayProtection =
+ Task.FromResult<MessageProtections?>(MessageProtections.ReplayProtection);
}
}