diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-05 15:36:55 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-05 15:36:55 -0700 |
commit | 49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c (patch) | |
tree | 9b836b0b9e94b8aa1e650c68e714bc214439d8da /samples/TestAzureAD/About.aspx.cs | |
parent | 7edb0a63ef796af300c670ce90df8e7670930a10 (diff) | |
parent | 489bf70111fe4839e87fa591928d2845341f0059 (diff) | |
download | DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.zip DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.tar.gz DotNetOpenAuth-49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c.tar.bz2 |
Adds Azure Active Directory OAuth 2 client.
Closes #271
Diffstat (limited to 'samples/TestAzureAD/About.aspx.cs')
-rw-r--r-- | samples/TestAzureAD/About.aspx.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/samples/TestAzureAD/About.aspx.cs b/samples/TestAzureAD/About.aspx.cs new file mode 100644 index 0000000..34799e8 --- /dev/null +++ b/samples/TestAzureAD/About.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace TestAzureAD +{ + public partial class About : Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +}
\ No newline at end of file |