blob: e7af6292bcb7d0a4997eff70768a96c8b5e97f68 (
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) {
}
}
|