diff options
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs index 5e6a03d..448aced 100644 --- a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs +++ b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs @@ -15,6 +15,8 @@ IEnumerable<IAuthenticationRequest> CreateRequests(Identifier userSuppliedIdentifier, Realm realm, Uri returnTo); IAuthenticationResponse GetResponse(); + + IAuthenticationResponse GetResponse(HttpRequestInfo request); } /// <summary> @@ -54,6 +56,10 @@ return relyingParty.GetResponse(); } + public IAuthenticationResponse GetResponse(HttpRequestInfo request) { + return relyingParty.GetResponse(request); + } + #endregion } } |