summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-23 21:50:40 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-23 21:50:40 -0800
commit98976665f90b20e4757e932ce3a33268f7e1daa6 (patch)
treeeeefb570e357a608dbe8a20ab1a033233cc65a7a /projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
parentb16591e45dd70602b1899d760200e72fd6d5eaec (diff)
downloadDotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.zip
DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.gz
DotNetOpenAuth-98976665f90b20e4757e932ce3a33268f7e1daa6.tar.bz2
Fixed a bunch more samples.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs b/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
index 0e2618c..254f77d 100644
--- a/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
+++ b/projecttemplates/RelyingPartyLogic/OAuthAuthenticationModule.cs
@@ -57,7 +57,7 @@ namespace RelyingPartyLogic {
IPrincipal principal = resourceServer.GetPrincipal(new HttpRequestWrapper(this.application.Context.Request));
this.application.Context.User = principal;
} catch (ProtocolFaultResponseException ex) {
- ex.CreateErrorResponse().Send();
+ ex.CreateErrorResponseAsync().Send();
}
}
}