summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Code
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-05 21:50:54 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-05 21:50:54 -0800
commit5fcf14c67ba2a9f95ed9685b8ab519394be2c2f5 (patch)
treee24ac49b3b18a04fb9bbfe8b970063b3b3f6ab7a /projecttemplates/MvcRelyingParty/Code
parenta292822196d0911a68fc56597ed52a8c84a41cbe (diff)
parentc8ddd3b2a4e4aa1a90c867c619845ffb2d967a4c (diff)
downloadDotNetOpenAuth-5fcf14c67ba2a9f95ed9685b8ab519394be2c2f5.zip
DotNetOpenAuth-5fcf14c67ba2a9f95ed9685b8ab519394be2c2f5.tar.gz
DotNetOpenAuth-5fcf14c67ba2a9f95ed9685b8ab519394be2c2f5.tar.bz2
HttpRequestInfo now replaced in public APIs with HttpRequestBase.
Fixes #78
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Code')
-rw-r--r--projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
index 7931200..30f3fae 100644
--- a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
+++ b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
@@ -24,7 +24,7 @@
IAuthenticationResponse GetResponse();
- IAuthenticationResponse GetResponse(HttpRequestInfo request);
+ IAuthenticationResponse GetResponse(HttpRequestBase request);
}
/// <summary>
@@ -101,7 +101,7 @@
return relyingParty.GetResponse();
}
- public IAuthenticationResponse GetResponse(HttpRequestInfo request) {
+ public IAuthenticationResponse GetResponse(HttpRequestBase request) {
return relyingParty.GetResponse(request);
}