diff options
Diffstat (limited to 'samples/OAuthServiceProvider/Code/Global.cs')
-rw-r--r-- | samples/OAuthServiceProvider/Code/Global.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs index bcfa8ae..580cbf4 100644 --- a/samples/OAuthServiceProvider/Code/Global.cs +++ b/samples/OAuthServiceProvider/Code/Global.cs @@ -46,12 +46,6 @@ get { return Global.DataContext.Users.SingleOrDefault(user => user.OpenIDClaimedIdentifier == HttpContext.Current.User.Identity.Name); } } - public static EndUserAuthorizationRequest PendingOAuth2Authorization - { - get { return HttpContext.Current.Session["authrequest"] as EndUserAuthorizationRequest; } - set { HttpContext.Current.Session["authrequest"] = value; } - } - private static DataClassesDataContext dataContextSimple { get { if (HttpContext.Current != null) { |