blob: 719a4a90be78c3f67c752717064de5afd796a47b (
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
41
42
43
|
//-----------------------------------------------------------------------
// <copyright file="TestDirectedMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOAuth.Test.Mocks {
using System;
using DotNetOAuth.ChannelElements;
using DotNetOAuth.Messaging;
internal class TestDirectedMessage : TestMessage, IOAuthDirectedMessage {
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
#region IOAuthDirectedMessage Members
public HttpDeliveryMethod HttpMethods { get; internal set; }
#endregion
protected virtual MessageProtection RequiredProtection {
get { return MessageProtection.None; }
}
}
}
|