//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOAuth.Test.Mocks { using System; using System.Collections.Generic; using System.Runtime.Serialization; using DotNetOAuth.Messaging; using DotNetOAuth.Messaging.Reflection; 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; } } } }