summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/IDirectResponseProtocolMessage.cs
blob: 3b4da6c12a8645098f551d2f5901f3d9af3f3c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//-----------------------------------------------------------------------
// <copyright file="IDirectResponseProtocolMessage.cs" company="Andrew Arnott">
//     Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.Messaging {
	/// <summary>
	/// Undirected messages that serve as direct responses to direct requests.
	/// </summary>
	public interface IDirectResponseProtocolMessage : IProtocolMessage {
		/// <summary>
		/// Gets the originating request message that caused this response to be formed.
		/// </summary>
		IDirectedProtocolMessage OriginatingRequest { get; }
	}
}