summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs')
-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);
}