summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId.Provider/OpenId/Provider/IAnonymousRequest.cs
blob: ec2c17511cef65be91b661f214c79766a765fc31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//-----------------------------------------------------------------------
// <copyright file="IAnonymousRequest.cs" company="Andrew Arnott">
//     Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.OpenId.Provider {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Text;

	/// <summary>
	/// Instances of this interface represent incoming extension-only requests.
	/// This interface provides the details of the request and allows setting
	/// the response.
	/// </summary>
	public interface IAnonymousRequest : IHostProcessedRequest {
		/// <summary>
		/// Gets or sets a value indicating whether the user approved sending any data to the relying party.
		/// </summary>
		/// <value><c>true</c> if approved; otherwise, <c>false</c>.</value>
		bool? IsApproved { get; set; }
	}
}