blob: 4650de2a3b16d58e69cef83a29690d47377d150d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//-----------------------------------------------------------------------
// <copyright file="TestReplayProtectedMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test.Mocks {
using System.Runtime.Serialization;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.Messaging.Bindings;
using DotNetOpenAuth.Messaging.Reflection;
internal class TestReplayProtectedMessage : TestExpiringMessage, IReplayProtectedProtocolMessage {
internal TestReplayProtectedMessage() { }
internal TestReplayProtectedMessage(MessageTransport transport)
: base(transport) {
}
#region IReplayProtectedProtocolMessage Members
string IReplayProtectedProtocolMessage.NonceContext {
get { return string.Empty; }
}
[MessagePart("Nonce")]
string IReplayProtectedProtocolMessage.Nonce {
get;
set;
}
#endregion
}
}
|