diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-02 21:43:08 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-02 21:43:08 -0800 |
commit | 916966f88a3ed3246374efb625804b11bdda6fa5 (patch) | |
tree | 33746b2a4eab9d336db4fe57c7056e5d83f407fa /samples/ServiceProvider/App_Code/Global.cs | |
parent | 696c3507c353a2b96d832efe6c8b87cfbad0b17a (diff) | |
download | DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.zip DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.tar.gz DotNetOpenAuth-916966f88a3ed3246374efb625804b11bdda6fa5.tar.bz2 |
Renamed all the OAuth message types.
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; }
}
|