summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/Code
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-06-06 17:56:41 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-06-06 17:56:41 -0700
commiteb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f (patch)
tree9400f89824278951a005b50b9746c2840b839a22 /samples/OAuthServiceProvider/Code
parent58426aea21d0177f1e6fab883f5a96681d868827 (diff)
downloadDotNetOpenAuth-eb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f.zip
DotNetOpenAuth-eb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f.tar.gz
DotNetOpenAuth-eb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f.tar.bz2
Renamed WebApp messages to WebServer to match OAuth 2.0 flow names.
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; }
}