summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OAuthServiceProvider/Code')
-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 8969d0d..9f345bf 100644
--- a/samples/OAuthServiceProvider/Code/Global.cs
+++ b/samples/OAuthServiceProvider/Code/Global.cs
@@ -52,9 +52,9 @@
set { HttpContext.Current.Session["authrequest"] = value; }
}
- public static WebAppRequest PendingOAuth2Authorization
+ public static WebServerRequest PendingOAuth2Authorization
{
- get { return HttpContext.Current.Session["authrequest"] as WebAppRequest; }
+ get { return HttpContext.Current.Session["authrequest"] as WebServerRequest; }
set { HttpContext.Current.Session["authrequest"] = value; }
}