namespace DotNetOAuth { using System; /// /// Implemented by messages that are sent as requests. /// interface IProtocolMessageRequest : IProtocolMessage { /// /// The URL of the intended receiver of this message. /// Uri Recipient { get; set; } } }