15

I was trying to replicate what Rick is doing here for OpenID implementation: http://www.west-wind.com/weblog/posts/899303.aspx

However, when I get to this part:

return req.RedirectingResponse.AsActionResult();

Then I cannot continue, as AsActionResult is no longer exists, is there any replacement of this?

Thanks alot

tereško
  • 58,060
  • 25
  • 98
  • 150
PlayKid
  • 871
  • 2
  • 10
  • 21
  • not enough tutorials include namespace requirements, and that control- is not always enough to figure it out. – Sprague Jan 29 '11 at 17:49

1 Answers1

30

It still exists. It is an extension method that you only get by having this at the top of your file:

using DotNetOpenAuth.Messaging;
Andrew Arnott
  • 80,040
  • 26
  • 132
  • 171