blob: 197346348a3b13c1bed57147f36f540515ca6f88 (
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; set; }
#endregion
#region IProtocolMessage Properties
MessageProtections IProtocolMessage.RequiredProtection {
get { return this.RequiredProtection; }
}
#endregion
#region IOAuthDirectedMessage Members
public HttpDeliveryMethods HttpMethods { get; internal set; }
#endregion
protected virtual MessageProtections RequiredProtection {
get { return MessageProtections.None; }
}
}
}
|