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