summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code/Global.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-22 14:48:07 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-22 14:48:07 -0700
commit29b7875c73d20f5607896e9f35a45d0a8bae4c54 (patch)
tree366e75702e11523690959eae0e6dc58a328d3491 /samples/OAuthServiceProvider/Code/Global.cs
parent4d2ec520fe9b42d0d0f1b764029a33dab906e68a (diff)
downloadDotNetOpenAuth-29b7875c73d20f5607896e9f35a45d0a8bae4c54.zip
DotNetOpenAuth-29b7875c73d20f5607896e9f35a45d0a8bae4c54.tar.gz
DotNetOpenAuth-29b7875c73d20f5607896e9f35a45d0a8bae4c54.tar.bz2
Ripped out OAuth 1.0 support from the OAuthServiceProvider sample.
Diffstat (limited to 'samples/OAuthServiceProvider/Code/Global.cs')
-rw-r--r--samples/OAuthServiceProvider/Code/Global.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs
index bcfa8ae..580cbf4 100644
--- a/samples/OAuthServiceProvider/Code/Global.cs
+++ b/samples/OAuthServiceProvider/Code/Global.cs
@@ -46,12 +46,6 @@
get { return Global.DataContext.Users.SingleOrDefault(user => user.OpenIDClaimedIdentifier == HttpContext.Current.User.Identity.Name); }
}
- public static EndUserAuthorizationRequest PendingOAuth2Authorization
- {
- get { return HttpContext.Current.Session["authrequest"] as EndUserAuthorizationRequest; }
- set { HttpContext.Current.Session["authrequest"] = value; }
- }
-
private static DataClassesDataContext dataContextSimple {
get {
if (HttpContext.Current != null) {