summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/IProtocolMessageRequest.cs
blob: 655c3df830ce173cbb308ec5373a288bb0ff54b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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