//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOAuth.Test.Mocks { using DotNetOAuth.Messaging; using DotNetOAuth.Messaging.Bindings; using DotNetOAuth.Messaging.Reflection; internal class TestSignedDirectedMessage : TestDirectedMessage, ITamperResistantProtocolMessage { internal TestSignedDirectedMessage() { } internal TestSignedDirectedMessage(MessageTransport transport) : base(transport) { } #region ISignedProtocolMessage Members [MessagePart] public string Signature { get; set; } #endregion protected override MessageProtections RequiredProtection { get { return MessageProtections.TamperProtection; } } } }