summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-12-18 07:43:51 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-12-18 07:43:51 -0800
commit2c88c7729957f7113627a4b9942b4c62c8d4f860 (patch)
treecdfcdd6a9f3a05357cc94c8c4f4daa45590dfca0
parentb77a6e7509a3c01a0f4f2697c556e4ad68ac5ec6 (diff)
downloadDotNetOpenAuth-2c88c7729957f7113627a4b9942b4c62c8d4f860.zip
DotNetOpenAuth-2c88c7729957f7113627a4b9942b4c62c8d4f860.tar.gz
DotNetOpenAuth-2c88c7729957f7113627a4b9942b4c62c8d4f860.tar.bz2
Fixed sample bug reported by Nikko.
-rw-r--r--samples/OpenIdProviderWebForms/Provider.ashx.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/samples/OpenIdProviderWebForms/Provider.ashx.cs b/samples/OpenIdProviderWebForms/Provider.ashx.cs
index c8441cf..3285b57 100644
--- a/samples/OpenIdProviderWebForms/Provider.ashx.cs
+++ b/samples/OpenIdProviderWebForms/Provider.ashx.cs
@@ -28,8 +28,7 @@
// redirects and user prompts can appear and eventually some page can decide
// to respond to the OpenID authentication request either affirmatively or
// negatively.
- ProviderEndpoint.PendingAnonymousRequest = request as IAnonymousRequest;
- ProviderEndpoint.PendingAuthenticationRequest = request as IAuthenticationRequest;
+ ProviderEndpoint.PendingRequest = request as IHostProcessedRequest;
// We delegate that approval process to our utility method that we share
// with our other Provider sample page server.aspx.