diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-13 17:20:53 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-13 17:20:53 -0700 |
commit | 09722c436047dccfb6b6294906013786f78d5d53 (patch) | |
tree | b266c794ee5662235063e0ec37d6b938674084f6 /src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs | |
parent | f665e1e639319918385fcc8397f8c0d5009e3bdd (diff) | |
download | DotNetOpenAuth-09722c436047dccfb6b6294906013786f78d5d53.zip DotNetOpenAuth-09722c436047dccfb6b6294906013786f78d5d53.tar.gz DotNetOpenAuth-09722c436047dccfb6b6294906013786f78d5d53.tar.bz2 |
Refactored several Messaging classes into the Messaging.Bindings namespace.
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs')
-rw-r--r-- | src/DotNetOAuth.Test/Mocks/MockReplayProtectionBindingElement.cs | 9 |
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) {
|