diff options
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs b/src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs index 5e65a59..d550514 100644 --- a/src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs +++ b/src/DotNetOpenAuth.Test/Mocks/MockReplayProtectionBindingElement.cs @@ -17,6 +17,11 @@ namespace DotNetOpenAuth.Test.Mocks { MessageProtections IChannelBindingElement.Protection { get { return MessageProtections.ReplayProtection; } } + + /// <summary> + /// Gets or sets the channel that this binding element belongs to. + /// </summary> + public Channel Channel { get; set; } bool IChannelBindingElement.PrepareMessageForSending(IProtocolMessage message) { var replayMessage = message as IReplayProtectedProtocolMessage; |