summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/Messages/IMessageWithClientState.cs
blob: 71476f2009bc2cf8840ea1387d98afaaebe20066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//-----------------------------------------------------------------------
// <copyright file="IMessageWithClientState.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.OAuth2.Messages {
	using DotNetOpenAuth.Messaging;

	/// <summary>
	/// A message carrying client state the authorization server should preserve on behalf of the client
	/// during an authorization.
	/// </summary>
	internal interface IMessageWithClientState : IProtocolMessage {
		/// <summary>
		/// Gets or sets the state of the client.
		/// </summary>
		/// <value>The state of the client.</value>
		string ClientState { get; set; }
	}
}