summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdWebRingSsoProvider/Code/Util.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-08-02 15:16:19 -0600
committerAndrew Arnott <andrewarnott@gmail.com>2011-08-02 15:16:19 -0600
commit6816f003019c792b23a27d7cede056fae95b8f00 (patch)
tree85023e0da775f0dad566e78eeb12292e095434a7 /samples/OpenIdWebRingSsoProvider/Code/Util.cs
parent7c972c147c32a54bf611baaa3de11cea433d8433 (diff)
downloadDotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.zip
DotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.tar.gz
DotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.tar.bz2
Samples now build.
Diffstat (limited to 'samples/OpenIdWebRingSsoProvider/Code/Util.cs')
-rw-r--r--samples/OpenIdWebRingSsoProvider/Code/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OpenIdWebRingSsoProvider/Code/Util.cs b/samples/OpenIdWebRingSsoProvider/Code/Util.cs
index 5a3a2fc..c9cb581 100644
--- a/samples/OpenIdWebRingSsoProvider/Code/Util.cs
+++ b/samples/OpenIdWebRingSsoProvider/Code/Util.cs
@@ -52,7 +52,7 @@ namespace OpenIdWebRingSsoProvider.Code {
internal static void ProcessAuthenticationChallenge(IAuthenticationRequest idrequest) {
// Verify that RP discovery is successful.
- if (idrequest.IsReturnUrlDiscoverable(ProviderEndpoint.Provider) != RelyingPartyDiscoveryResult.Success) {
+ if (idrequest.IsReturnUrlDiscoverable(ProviderEndpoint.Provider.Channel.WebRequestHandler) != RelyingPartyDiscoveryResult.Success) {
idrequest.IsAuthenticated = false;
return;
}