//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOAuth.Messaging { using System; /// /// Implemented by messages that have explicit recipients /// (direct requests and all indirect messages). /// internal interface IDirectedProtocolMessage : IProtocolMessage { /// /// Gets the URL of the intended receiver of this message. /// Uri Recipient { get; } } }