summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/IProtocolMessageRequest.cs
blob: 5d38b41415ce9b8a492eaeda5c229093076afe24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace DotNetOAuth {
	using System;

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