summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-12 23:55:26 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-12 23:55:26 -0800
commit96622db842f7762dc440c321bf7dc1a7a75e1d4f (patch)
tree08b21f0cbc788ea65284880009a77298e13dbbe6 /projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs
parent6c7a41277312bfc42aabf5ecbe5fc58e99243f37 (diff)
downloadDotNetOpenAuth-96622db842f7762dc440c321bf7dc1a7a75e1d4f.zip
DotNetOpenAuth-96622db842f7762dc440c321bf7dc1a7a75e1d4f.tar.gz
DotNetOpenAuth-96622db842f7762dc440c321bf7dc1a7a75e1d4f.tar.bz2
StyleCop fixes.
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs')
-rw-r--r--projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs b/projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs
index 57d442f..0896154 100644
--- a/projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs
+++ b/projecttemplates/WebFormsRelyingParty/Code/OAuthAuthenticationModule.cs
@@ -26,7 +26,7 @@ namespace WebFormsRelyingParty.Code {
/// <param name="context">An <see cref="T:System.Web.HttpApplication"/> that provides access to the methods, properties, and events common to all application objects within an ASP.NET application</param>
public void Init(HttpApplication context) {
this.application = context;
- this.application.AuthenticateRequest += new EventHandler(context_AuthenticateRequest);
+ this.application.AuthenticateRequest += this.context_AuthenticateRequest;
}
/// <summary>