blob: fa371ae65b739d829b18843c6e0838938b1d08c7 (
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="Andrew Arnott">
// Copyright (c) Andrew Arnott. 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; }
}
}
|