diff options
Diffstat (limited to 'samples/ServiceProvider/AuthorizedConsumers.aspx.cs')
-rw-r--r-- | samples/ServiceProvider/AuthorizedConsumers.aspx.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/samples/ServiceProvider/AuthorizedConsumers.aspx.cs b/samples/ServiceProvider/AuthorizedConsumers.aspx.cs new file mode 100644 index 0000000..1fb4e95 --- /dev/null +++ b/samples/ServiceProvider/AuthorizedConsumers.aspx.cs @@ -0,0 +1,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) {
+ }
+}
|