summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Members/AuthorizedConsumers.aspx.cs
blob: fe647a835deeab8331eb076cbc2f9e7fca360783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace OAuthServiceProvider {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Web;
	using System.Web.UI;
	using System.Web.UI.WebControls;

	/// <summary>
	/// Lists the consumers that have active request or access tokens
	/// and provides a mechanism for the user to revoke permissions.
	/// </summary>
	public partial class AuthorizedConsumers : System.Web.UI.Page {
		protected void Page_Load(object sender, EventArgs e) {
		}
	}
}