summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code/Global.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-14 21:26:45 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-14 21:26:45 -0700
commitd2cc03592968769bced64c17997c0943209df0bf (patch)
treec27ecfbe93cf3f95b2c301cc3905196e2efb3f7f /samples/OAuthServiceProvider/Code/Global.cs
parenteb8e3476249517272780e3cbf6fde7d94340f257 (diff)
downloadDotNetOpenAuth-d2cc03592968769bced64c17997c0943209df0bf.zip
DotNetOpenAuth-d2cc03592968769bced64c17997c0943209df0bf.tar.gz
DotNetOpenAuth-d2cc03592968769bced64c17997c0943209df0bf.tar.bz2
Work toward OAuth 2.0 draft 8.
Diffstat (limited to 'samples/OAuthServiceProvider/Code/Global.cs')
-rw-r--r--samples/OAuthServiceProvider/Code/Global.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs
index fd7d475..44263e9 100644
--- a/samples/OAuthServiceProvider/Code/Global.cs
+++ b/samples/OAuthServiceProvider/Code/Global.cs
@@ -54,9 +54,9 @@
set { HttpContext.Current.Session["authrequest"] = value; }
}
- public static WebServerRequest PendingOAuth2Authorization
+ public static EndUserAuthorizationRequest PendingOAuth2Authorization
{
- get { return HttpContext.Current.Session["authrequest"] as WebServerRequest; }
+ get { return HttpContext.Current.Session["authrequest"] as EndUserAuthorizationRequest; }
set { HttpContext.Current.Session["authrequest"] = value; }
}