summaryrefslogtreecommitdiffstats
path: root/samples/ServiceProvider/Members/AuthorizedConsumers.aspx.cs
blob: 1fb4e951e246857348c5c10a51aeea1d8a186938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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) {
	}
}