diff options
Diffstat (limited to 'samples/ServiceProvider/App_Code/Global.cs')
-rw-r--r-- | samples/ServiceProvider/App_Code/Global.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/ServiceProvider/App_Code/Global.cs b/samples/ServiceProvider/App_Code/Global.cs index 7e8d92d..aa0d738 100644 --- a/samples/ServiceProvider/App_Code/Global.cs +++ b/samples/ServiceProvider/App_Code/Global.cs @@ -42,8 +42,8 @@ public class Global : HttpApplication { get { return Global.DataContext.Users.SingleOrDefault(user => user.OpenIDClaimedIdentifier == HttpContext.Current.User.Identity.Name); }
}
- public static DirectUserToServiceProviderMessage PendingOAuthAuthorization {
- get { return HttpContext.Current.Session["authrequest"] as DirectUserToServiceProviderMessage; }
+ public static UserAuthorizationRequest PendingOAuthAuthorization {
+ get { return HttpContext.Current.Session["authrequest"] as UserAuthorizationRequest; }
set { HttpContext.Current.Session["authrequest"] = value; }
}
|