diff options
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs b/projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs index faf0888..274b5da 100644 --- a/projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs +++ b/projecttemplates/WebFormsRelyingParty/OAuth.ashx.cs @@ -9,6 +9,7 @@ namespace WebFormsRelyingParty { using System.Collections.Generic; using System.Linq; using System.Web; + using System.Web.SessionState; using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OAuth; using DotNetOpenAuth.OAuth.Messages; @@ -17,7 +18,7 @@ namespace WebFormsRelyingParty { /// <summary> /// Responds to incoming OAuth Service Provider messages. /// </summary> - public class OAuth : IHttpHandler { + public class OAuth : IHttpHandler, IRequiresSessionState { /// <summary> /// Initializes a new instance of the <see cref="OAuth"/> class. /// </summary> |