diff options
Diffstat (limited to 'samples/OAuthServiceProvider/Code/Global.cs')
-rw-r--r-- | samples/OAuthServiceProvider/Code/Global.cs | 4 |
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; } } |