summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs')
-rw-r--r--src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs b/src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs
index ff1d709..1b80b5b 100644
--- a/src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs
+++ b/src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs
@@ -5,11 +5,8 @@
//-----------------------------------------------------------------------
namespace DotNetOAuth.Test.Mocks {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
using DotNetOAuth.Messaging;
+ using DotNetOAuth.Messaging.Bindings;
using Microsoft.VisualStudio.TestTools.UnitTesting;
internal class MockReplayProtectionBindingElement : IChannelBindingElement {
@@ -17,8 +14,8 @@ namespace DotNetOAuth.Test.Mocks {
#region IChannelBindingElement Members
- ChannelProtection IChannelBindingElement.Protection {
- get { return ChannelProtection.ReplayProtection; }
+ MessageProtection IChannelBindingElement.Protection {
+ get { return MessageProtection.ReplayProtection; }
}
void IChannelBindingElement.PrepareMessageForSending(IProtocolMessage message) {