diff options
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/MessageProtectionTasks.cs | 6 |
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); } } |