blob: 17317f5a72c197aae61943878f2fbe1e9add2d7a (
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
35
36
37
38
39
40
|
//-----------------------------------------------------------------------
// <copyright file="TestDirectedMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Test.Mocks {
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using DotNetOAuth.Messaging;
using DotNetOAuth.Messaging.Reflection;
[DataContract(Namespace = Protocol.DataContractNamespaceV10)]
internal class TestDirectedMessage : TestMessage, IDirectedProtocolMessage {
internal TestDirectedMessage() {
}
internal TestDirectedMessage(MessageTransport transport) : base(transport) {
}
#region IDirectedProtocolMessage Members
public Uri Recipient { get; internal set; }
#endregion
#region IProtocolMessage Properties
MessageProtection IProtocolMessage.RequiredProtection {
get { return this.RequiredProtection; }
}
#endregion
protected virtual MessageProtection RequiredProtection {
get { return MessageProtection.None; }
}
}
}
|